我有一个标签
<td>abcdefg</td>
如何在seleniumBasic中通过xpath引用它?
我试过了:
driver.FindElementByXPath("//td[@text='abcdefg']")
driver.FindElementByXPath("//td[text()='abcdefg']")
driver.FindElementByXPath("//td[@innertext='abcdefg']")
driver.FindElementByXPath("//td[contains(text()='abc')]")
都得到no-such-element-error
答案 0 :(得分:1)
driver.FindElementByXPath("//td[text()=""abcdefg""]")