airgun.entities.http_proxy

Module Contents

Classes

HTTPProxyEntity

ShowAllHTTPProxy

Navigate to All http-proxy page

AddNewHTTPProxy

Navigate to Create HTTP Proxy page

EditHTTPProxy

Navigate to Edit HTTP Proxy page

class airgun.entities.http_proxy.HTTPProxyEntity(browser)
endpoint_path = /http_proxies
create(values)

Create a new http-proxy.

search(value)

Search for ‘value’ and return http-proxy names that match.

Parameters

value – text to filter (default: no filter)

read(entity_name, widget_names=None)

Return dict with properties of http-proxy.

update(entity_name, values)

Update an existing http-proxy.

delete(entity_name)

Delete existing http-proxy entity

class airgun.entities.http_proxy.ShowAllHTTPProxy(obj, navigate_obj, logger=None)

Navigate to All http-proxy page

VIEW
step(*args, **kwargs)

Describes the work to be done to get to the destination after the prequisite is met.

This is a default and is generally overridden.

class airgun.entities.http_proxy.AddNewHTTPProxy(obj, navigate_obj, logger=None)

Navigate to Create HTTP Proxy page

VIEW
prerequisite
step(*args, **kwargs)

Describes the work to be done to get to the destination after the prequisite is met.

This is a default and is generally overridden.

class airgun.entities.http_proxy.EditHTTPProxy(obj, navigate_obj, logger=None)

Navigate to Edit HTTP Proxy page

Parameters

entity_name – name of the HTTP Proxy

VIEW
prerequisite(*args, **kwargs)

Describes a step that must be carried our prior to this one.

This often calls a previous navigate_to, often using one of the helpers, NavigateToSibling which will navigate to a given destination using the same object, or NavigateToAttribute which will navigate to a destination against an object describe by the attribute of the parent object.

This is a default and is generally overridden.

step(*args, **kwargs)

Describes the work to be done to get to the destination after the prequisite is met.

This is a default and is generally overridden.