From dd9830832b41b7f41bad79b513884e9002b712dd Mon Sep 17 00:00:00 2001 From: amol patil Date: Mon, 8 Jul 2024 13:47:33 +0530 Subject: [PATCH] removed (.) which fails to navigate to host --- airgun/views/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airgun/views/host.py b/airgun/views/host.py index 8c14a2848..6670c9496 100644 --- a/airgun/views/host.py +++ b/airgun/views/host.py @@ -226,7 +226,7 @@ class HostsView(BaseLoggedInView, SearchableViewMixinPF4): column_widgets={ 0: Checkbox(locator=".//input[@class='host_select_boxes']"), 'Name': Text( - ".//a[contains(@href, '/new/hosts/') and not(contains(@href, 'Insights'))]" + "//a[contains(@href, '/new/hosts/') and not(contains(@href, 'Insights'))]" ), 'Recommendations': Text("./a"), 'Actions': ActionsDropdown("./div[contains(@class, 'btn-group')]"),