4.0.4.6修复用css在元素下获取多个子元素时数量不正确问题

This commit is contained in:
g1879 2024-02-28 21:17:15 +08:00
parent 12b6882d4c
commit 8c1a549b21
2 changed files with 3 additions and 5 deletions

View File

@ -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'

View File

@ -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