proxy¶
Proxy(ta_name, ta_proxy_url, ta_conf='', ucc_smartx_selenium_helper=None, ucc_smartx_rest_helper=None)
¶
Bases: Entity
flowchart TD
pytest_splunk_addon_ui_smartx.pages.proxy.Proxy[Proxy]
pytest_splunk_addon_ui_smartx.components.entity.Entity[Entity]
pytest_splunk_addon_ui_smartx.components.base_component.BaseComponent[BaseComponent]
pytest_splunk_addon_ui_smartx.components.entity.Entity --> pytest_splunk_addon_ui_smartx.pages.proxy.Proxy
pytest_splunk_addon_ui_smartx.components.base_component.BaseComponent --> pytest_splunk_addon_ui_smartx.components.entity.Entity
click pytest_splunk_addon_ui_smartx.pages.proxy.Proxy href "" "pytest_splunk_addon_ui_smartx.pages.proxy.Proxy"
click pytest_splunk_addon_ui_smartx.components.entity.Entity href "" "pytest_splunk_addon_ui_smartx.components.entity.Entity"
click pytest_splunk_addon_ui_smartx.components.base_component.BaseComponent href "" "pytest_splunk_addon_ui_smartx.components.base_component.BaseComponent"
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ta_name
|
Name of TA |
required | |
ta_conf
|
Name of conf file |
''
|
|
ucc_smartx_selenium_helper
|
Fixture with selenium driver, urls(web, mgmt) and session key |
None
|
|
ucc_smartx_rest_helper
|
Fixture with selenium driver, urls(mgmt) |
None
|
Source code in pytest_splunk_addon_ui_smartx/pages/proxy.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | |
open()
¶
Open the required page. Page(super) class opens the page by default.
Source code in pytest_splunk_addon_ui_smartx/pages/proxy.py
102 103 104 105 106 107 108 109 110 | |