选择仅使用tabindex选择器的元素时出现问题
<a href="#" tabindex="-1">
<!--template bindings={}--><span><strong>D000002</strong></span>
</a>
它看起来像这样:
,从DevTool复制的xpath://*[@id="dcr-search-form"]/typeahead-container/ul/li/a/span/strong
不起作用:
query = driver.findElement(By.xpath("//*[@id='dcr-search-form']/typeahead-container/ul/li/a/span/strong"));
有什么建议吗?
答案 0 :(得分:0)
driver.findElement(By.xpath( “// * [@ id中= 'DCR-搜索表单'] /预输入容器/ UL”));
工作:)