修复get_session_storage()报错

This commit is contained in:
g1879 2023-04-18 11:13:07 +08:00
parent edf6896045
commit ea3dc57618

View File

@ -1289,7 +1289,7 @@ def parse_js_result(page, ele, result):
ownProperties=True)['result']
return [parse_js_result(page, ele, result=i['value']) for i in r[:-1]]
elif 'objectId' in result and result['className'] == 'object': # dict
elif 'objectId' in result and result['className'].lower() == 'object': # dict
r = page.run_cdp('Runtime.getProperties', objectId=result['objectId'],
ownProperties=True)['result']
return {i['name']: parse_js_result(page, ele, result=i['value']) for i in r}
@ -1565,8 +1565,7 @@ class Click(object):
return self.left(by_js, timeout)
def left(self, by_js=False, timeout=1):
"""点击元素
如果遇到遮挡可选择是否用js点击
"""点击元素可选择是否用js点击
:param by_js: 是否用js点击为None时先用模拟点击遇到遮挡改用js为True时直接用js点击为False时只用模拟点击
:param timeout: 模拟点击的超时时间等待元素可见不被遮挡进入视口
:return: 是否点击成功