标签: xpath
有人可以建议我如何使用xpath按名称找到这个元素吗?
<button style="position: relative; width: 69px;" type="button" class="x-btn-text " tabindex="0">Search</button>
答案 0 :(得分:0)
您可以使用://button[text()='Search']
//button[text()='Search']
答案 1 :(得分:0)
//button/text()应该返回“搜索”。
//button/text()