From 4a7fbdc4eb28c20cfa2dfa2af0a409c05600ef43 Mon Sep 17 00:00:00 2001 From: amolpati30 <151733635+amolpati30@users.noreply.github.com> Date: Mon, 15 Jul 2024 15:07:10 +0530 Subject: [PATCH] removed (.) which fails to navigate to host (#1461) --- 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')]"),