加上try语法,增加tree() 方法的健壮性

Signed-off-by: haiyang <13959713+haiyang0726@user.noreply.gitee.com>
This commit is contained in:
haiyang 2024-01-12 03:45:58 +00:00 committed by Gitee
parent 83ea129d8c
commit 82f9174176
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -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 = '├───'