我会分享我对 DOM 定位器的理解。有几种 DOM 缩写:
gEBI - getElementById
gEBTN - getElementsByTagName
Xpath 定位器和 css 选择器用于 selenium web 驱动程序的上下文中,而 DOM 定位器用于 javascript 的上下文中(即,要正确使用 DOM 定位器定位元素,您应该JavascriptExecutor
首先包装 DOM 定位器)
用法示例:
Whole web page document.documentElement
Whole web page body document.body
Element <E> by absolute reference document.body.childNodes[i]...childNodes[j]
Element <E> by relative reference document.gEBTN('E')[0]
document.getElementById('TestTable')
First <E> child document.getEBTN('E')[0]
Last <E> child document.gEBTN(E)[document.gEBTN(E).length-1]
Second <E> child document.getEBTN('E')[1]
Second-to-last <E> child document.gEBTN(E)[document.gEBTN(E).length-2]
Parent of element <E> document.gEBTN('E')[0].parentNode
Descendant <E> of element with id I using specific path
document.gEBI('I')…gEBTN('E')[0]
Descendant <E> of element with id I using unspecified path
document.gEBI('I').gEBTN('E')[0]
因此,如果您想完成这项工作,我们应该调用 jsExecutor。它类似于:
JavascriptExecutor js = (JavascriptExecutor) driver;
String script = "return document.getElementById('example');";
WebElement exampleDiv = (WebElement) js.executeScript(script);
exampleDiv.getText();
另外关于你的问题,我在这里找到了一段解释
希望现在更清楚一点)