We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbebc1c commit 192c941Copy full SHA for 192c941
src/SeleniumLibraryExtends/FindElements/findElements.py
@@ -6,6 +6,7 @@
6
from robot.libraries.BuiltIn import BuiltIn
7
from robot.api.deco import keyword
8
from SeleniumLibraryExtends.report import Report
9
+from SeleniumLibraryExtends.highlight import Highlight
10
11
class FindElements:
12
def __init__(self):
@@ -16,6 +17,7 @@ def waitForElementVisible(self, locator: str):
16
17
self.driver = BuiltIn().get_library_instance("SeleniumLibrary")
18
try:
19
self.driver.wait_until_element_is_visible(locator)
20
+ Highlight.init(locator)
21
except Exception as e:
22
Report().fail(e)
23
0 commit comments