From 208eaa48776eee7e591a7d0d515a9b08e44580c2 Mon Sep 17 00:00:00 2001 From: Gaurav Talreja Date: Tue, 19 Nov 2024 14:29:18 +0530 Subject: [PATCH] Add locator for content_default_http_proxy checkbox on HTTP proxy create page Signed-off-by: Gaurav Talreja --- airgun/views/http_proxy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/airgun/views/http_proxy.py b/airgun/views/http_proxy.py index af1d86134..d1d8b74fb 100644 --- a/airgun/views/http_proxy.py +++ b/airgun/views/http_proxy.py @@ -1,4 +1,4 @@ -from widgetastic.widget import Table, Text, TextInput, View +from widgetastic.widget import Checkbox, Table, Text, TextInput, View from widgetastic_patternfly import BreadCrumb from airgun.views.common import BaseLoggedInView, SatTab, SearchableViewMixin @@ -46,6 +46,7 @@ class http_proxy(SatTab): password = TextInput(id='http_proxy_password') test_url = TextInput(id='http_proxy_test_url') test_connection = Text('//a[@id="test_connection_button"]') + content_default_http_proxy = Checkbox(id='content_default_http_proxy') @View.nested class locations(SatTab):