From 82f9174176fd95bce76f9e1c6166781c86e28d74 Mon Sep 17 00:00:00 2001 From: haiyang <13959713+haiyang0726@user.noreply.gitee.com> Date: Fri, 12 Jan 2024 03:45:58 +0000 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E4=B8=8Atry=E8=AF=AD=E6=B3=95?= =?UTF-8?q?=EF=BC=8C=E5=A2=9E=E5=8A=A0tree()=20=E6=96=B9=E6=B3=95=E7=9A=84?= =?UTF-8?q?=E5=81=A5=E5=A3=AE=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: haiyang <13959713+haiyang0726@user.noreply.gitee.com> --- DrissionPage/_elements/chromium_element.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DrissionPage/_elements/chromium_element.py b/DrissionPage/_elements/chromium_element.py index 1eb34e9..9f54e66 100644 --- a/DrissionPage/_elements/chromium_element.py +++ b/DrissionPage/_elements/chromium_element.py @@ -130,7 +130,10 @@ class ChromiumElement(DrissionElement): self.__tree(ele=self) def __tree(self,ele, layer=5, last_one=False, body=''): - list_ele = ele.children(timeout=0.1) + try: + list_ele = ele.children(timeout=0.1) + except: + list_ele = [] length = len(list_ele) body_unit = ' ' if last_one else '│ ' tail = '├───'