mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
update DrissionPage/_elements/chromium_element.py.
完善获取xpath路径逻辑,保证获取的xpath路径是唯一的 优化获取的css路径,去除多余的伪类选择器 Signed-off-by: 温铭 <3348431908@qq.com>
This commit is contained in:
parent
cebee0a720
commit
f2547421ad
@ -640,8 +640,21 @@ class ChromiumElement(DrissionElement):
|
|||||||
txt1 = 'let tag = el.nodeName.toLowerCase();'
|
txt1 = 'let tag = el.nodeName.toLowerCase();'
|
||||||
txt3 = ''' && sib.nodeName.toLowerCase()==tag'''
|
txt3 = ''' && sib.nodeName.toLowerCase()==tag'''
|
||||||
txt4 = '''
|
txt4 = '''
|
||||||
if(nth>1){path = '/' + tag + '[' + nth + ']' + path;}
|
let sib1 = el, chi = 0;
|
||||||
else{path = '/' + tag + path;}'''
|
while (sib1) {
|
||||||
|
if (sib1.nodeType === Node.ELEMENT_NODE && sib1.nodeName.toLowerCase() === tag) {
|
||||||
|
chi += 1;
|
||||||
|
}
|
||||||
|
sib1 = sib1.nextSibling;
|
||||||
|
}
|
||||||
|
if (nth > 1) {
|
||||||
|
path = '/' + tag + '[' + nth + ']' + path;
|
||||||
|
} else if (chi > 1) {
|
||||||
|
path = '/' + tag + '[1]' + path;
|
||||||
|
} else {
|
||||||
|
path = '/' + tag + path;
|
||||||
|
}
|
||||||
|
'''
|
||||||
txt5 = '''return path;'''
|
txt5 = '''return path;'''
|
||||||
|
|
||||||
elif mode == 'css':
|
elif mode == 'css':
|
||||||
@ -651,7 +664,18 @@ class ChromiumElement(DrissionElement):
|
|||||||
break;}
|
break;}
|
||||||
'''
|
'''
|
||||||
txt3 = ''
|
txt3 = ''
|
||||||
txt4 = '''path = '>' + el.tagName.toLowerCase() + ":nth-child(" + nth + ")" + path;'''
|
txt4 = '''let tag = el.nodeName.toLowerCase(), sib1 = el, chi = 0;
|
||||||
|
while (sib1) {
|
||||||
|
if (sib1.nodeType === Node.ELEMENT_NODE && sib1.nodeName.toLowerCase() === tag) {
|
||||||
|
chi += 1;
|
||||||
|
}
|
||||||
|
sib1 = sib1.nextSibling;
|
||||||
|
}
|
||||||
|
if (nth > 1 || chi > 1) {
|
||||||
|
path = '>' + el.tagName.toLowerCase() + ":nth-child(" + nth + ")" + path;
|
||||||
|
} else {
|
||||||
|
path = '>' + el.tagName.toLowerCase() + path;
|
||||||
|
}'''
|
||||||
txt5 = '''return path.substr(1);'''
|
txt5 = '''return path.substr(1);'''
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user