From ea3dc57618e5383ed1f96a3201f693bec6642a7a Mon Sep 17 00:00:00 2001 From: g1879 Date: Tue, 18 Apr 2023 11:13:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dget=5Fsession=5Fstorage()?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/chromium_element.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/DrissionPage/chromium_element.py b/DrissionPage/chromium_element.py index e3f5ed0..d57d504 100644 --- a/DrissionPage/chromium_element.py +++ b/DrissionPage/chromium_element.py @@ -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: 是否点击成功