优化css_path

This commit is contained in:
g1879 2024-10-09 14:45:17 +08:00
parent 25dd981b25
commit 8d1d3b554d
2 changed files with 11 additions and 10 deletions

View File

@ -647,7 +647,8 @@ class ChromiumElement(DrissionElement):
txt1 = ''' txt1 = '''
let i = el.getAttribute("id"); let i = el.getAttribute("id");
if (i){path = '>' + el.tagName.toLowerCase() + "#" + i + path; if (i){path = '>' + el.tagName.toLowerCase() + "#" + i + path;
break;} el = el.parentNode;
continue;}
''' '''
txt3 = '' txt3 = ''
txt4 = '''path = '>' + el.tagName.toLowerCase() + ":nth-child(" + nth + ")" + path;''' txt4 = '''path = '>' + el.tagName.toLowerCase() + ":nth-child(" + nth + ")" + path;'''
@ -655,7 +656,6 @@ class ChromiumElement(DrissionElement):
js = '''function(){ js = '''function(){
function e(el) { function e(el) {
//return el;
if (!(el instanceof Element)) return; if (!(el instanceof Element)) return;
let path = ''; let path = '';
while (el.nodeType === Node.ELEMENT_NODE) { while (el.nodeType === Node.ELEMENT_NODE) {

View File

@ -149,18 +149,19 @@ class SessionElement(DrissionElement):
path_str = '' path_str = ''
ele = self ele = self
while ele:
if xpath: if xpath:
while ele:
brothers = len(ele.eles(f'xpath:./preceding-sibling::{ele.tag}')) brothers = len(ele.eles(f'xpath:./preceding-sibling::{ele.tag}'))
path_str = f'/{ele.tag}[{brothers + 1}]{path_str}' path_str = f'/{ele.tag}[{brothers + 1}]{path_str}'
ele = ele.parent()
else: else:
while ele:
id_ = ele.attr('id') id_ = ele.attr('id')
if id_: if id_:
path_str = f'>{ele.tag}#{id_}{path_str}' path_str = f'>{ele.tag}#{id_}{path_str}'
break else:
brothers = len(ele.eles(f'xpath:./preceding-sibling::*')) path_str = f'>{ele.tag}:nth-child({len(ele.eles("xpath:./preceding-sibling::*")) + 1}){path_str}'
path_str = f'>{ele.tag}:nth-child({brothers + 1}){path_str}'
ele = ele.parent() ele = ele.parent()
return path_str if xpath else f'{path_str[1:]}' return path_str if xpath else f'{path_str[1:]}'