From ae0f3a70c2f094340d4a93fb764c9d935ef6d788 Mon Sep 17 00:00:00 2001 From: David Moore Date: Tue, 31 Oct 2023 14:37:58 -0400 Subject: [PATCH] Host-Errata tab search fix --- airgun/views/host_new.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airgun/views/host_new.py b/airgun/views/host_new.py index 1d4bc3b26..22e75b4ee 100644 --- a/airgun/views/host_new.py +++ b/airgun/views/host_new.py @@ -368,7 +368,7 @@ class errata(Tab): ROOT = './/div[@id="errata-tab"]' select_all = Checkbox(locator='.//div[@id="selection-checkbox"]/div/label') - searchbar = SearchInput(locator='.//input[contains(@class, "pf-m-search")]') + searchbar = SearchInput(locator='.//input[contains(@class, "pf-c-text-input")]') type_filter = Select(locator='.//div[@aria-label="select Type container"]/div') severity_filter = Select(locator='.//div[@aria-label="select Severity container"]/div') apply = Pf4ActionsDropdown(locator='.//div[@aria-label="errata_dropdown"]')