fix get_eles exception

This commit is contained in:
Stam He 2024-07-19 21:54:36 -05:00
parent 2dd44d1982
commit bb0f83b696
No known key found for this signature in database
GPG Key ID: 3861C8C44D25274F
2 changed files with 12 additions and 5 deletions

2
.gitignore vendored
View File

@ -113,3 +113,5 @@ dmypy.json
# Pyre type checker
.pyre/
.idea/

View File

@ -393,11 +393,16 @@ def get_eles(locators, owner, any_one=False, first_ele=True, timeout=10):
for loc in locators:
if res[loc] is not False:
continue
try:
ele = owner.ele(loc, timeout=0) if first_ele else owner.eles(loc, timeout=0)
if ele:
res[loc] = ele
if any_one:
return res
except Exception as e:
pass
if False not in res.values():
break
return res