We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f01d3c commit 75626d1Copy full SHA for 75626d1
1 file changed
utils/navigation_converter.py
@@ -23,6 +23,8 @@ def getSeleniumCssAndXPath(targets, target):
23
css = None
24
xpath = None
25
for item in targets:
26
+ if not item or len(item) < 2:
27
+ return (None, None)
28
if item[1] == 'css:finder':
29
css = item[0].replace('css=', '')
30
if item[1] == 'xpath:position':
0 commit comments