mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
加上try语法,增加tree() 方法的健壮性
Signed-off-by: haiyang <13959713+haiyang0726@user.noreply.gitee.com>
This commit is contained in:
parent
83ea129d8c
commit
82f9174176
@ -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 = '├───'
|
||||
|
Loading…
x
Reference in New Issue
Block a user