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 type checker
|
||||||
.pyre/
|
.pyre/
|
||||||
|
|
||||||
|
.idea/
|
||||||
|
@ -393,11 +393,16 @@ def get_eles(locators, owner, any_one=False, first_ele=True, timeout=10):
|
|||||||
for loc in locators:
|
for loc in locators:
|
||||||
if res[loc] is not False:
|
if res[loc] is not False:
|
||||||
continue
|
continue
|
||||||
ele = owner.ele(loc, timeout=0) if first_ele else owner.eles(loc, timeout=0)
|
|
||||||
if ele:
|
try:
|
||||||
res[loc] = ele
|
ele = owner.ele(loc, timeout=0) if first_ele else owner.eles(loc, timeout=0)
|
||||||
if any_one:
|
if ele:
|
||||||
return res
|
res[loc] = ele
|
||||||
|
if any_one:
|
||||||
|
return res
|
||||||
|
except Exception as e:
|
||||||
|
pass
|
||||||
|
|
||||||
if False not in res.values():
|
if False not in res.values():
|
||||||
break
|
break
|
||||||
return res
|
return res
|
||||||
|
Loading…
x
Reference in New Issue
Block a user