From 4aa0b0eb779a0da8af42396389ed6e267101f186 Mon Sep 17 00:00:00 2001 From: Gaurav Talreja Date: Tue, 19 Nov 2024 14:29:18 +0530 Subject: [PATCH] Add locator for default_content_http_proxy 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..3f1ea696e 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"]') + default_content_http_proxy = Checkbox(id='http_proxy_default_content') @View.nested class locations(SatTab):