mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
4.0.4.6修复用css在元素下获取多个子元素时数量不正确问题
This commit is contained in:
parent
12b6882d4c
commit
8c1a549b21
@ -14,4 +14,4 @@ from ._configs.chromium_options import ChromiumOptions
|
||||
from ._configs.session_options import SessionOptions
|
||||
|
||||
__all__ = ['ChromiumPage', 'ChromiumOptions', 'SessionOptions', 'SessionPage', 'WebPage', '__version__']
|
||||
__version__ = '4.0.4.5'
|
||||
__version__ = '4.0.4.6'
|
||||
|
@ -1256,7 +1256,7 @@ def find_by_css(ele, selector, index, timeout):
|
||||
else:
|
||||
obj_ids = [i['value']['objectId'] for i in ele.owner.run_cdp('Runtime.getProperties',
|
||||
objectId=res['result']['objectId'],
|
||||
ownProperties=True)['result'][:-1]]
|
||||
ownProperties=True)['result']]
|
||||
r = make_chromium_eles(ele.owner, _ids=obj_ids, index=index, is_obj_id=True)
|
||||
return None if r is False else r
|
||||
|
||||
@ -1291,9 +1291,7 @@ def make_chromium_eles(page, _ids, index=1, is_obj_id=True, ele_only=False):
|
||||
if ele_only:
|
||||
for obj_id in _ids:
|
||||
tmp = get_node_func(page, obj_id, ele_only)
|
||||
if tmp is False:
|
||||
return False
|
||||
elif tmp is not None:
|
||||
if tmp is not None:
|
||||
return tmp
|
||||
return False
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user