mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
Pre Merge pull request !49 from stamhe/dev
This commit is contained in:
commit
768f22d2e2
2
.gitignore
vendored
2
.gitignore
vendored
@ -113,3 +113,5 @@ dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
.idea/
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user