From 1cba2bb3889f20694ed11dd5dd16f84eb0d5011d Mon Sep 17 00:00:00 2001 From: amolpati30 <151733635+amolpati30@users.noreply.github.com> Date: Mon, 26 Aug 2024 14:50:44 +0530 Subject: [PATCH] locator updated in is_supported() method (#1527) --- airgun/entities/provisioning_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airgun/entities/provisioning_template.py b/airgun/entities/provisioning_template.py index c3986813c..21be1ff41 100644 --- a/airgun/entities/provisioning_template.py +++ b/airgun/entities/provisioning_template.py @@ -75,7 +75,7 @@ def is_supported(self, entity_name): try: return "Supported by Red Hat" in view.table.row(name=entity_name)[ 'Name' - ].widget.browser.element('./img').get_attribute('title') + ].widget.browser.element('./parent::td/img').get_attribute('title') except NoSuchElementException: return False