Pre Merge pull request !49 from stamhe/dev

This commit is contained in:
stamhe 2024-07-21 15:51:23 +00:00 committed by Gitee
commit 768f22d2e2
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
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
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
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