搜索框网站上的此代码的xpath是什么?

时间:2019-01-27 16:03:06

标签: selenium-webdriver xpath

有人可以告诉我,对于flipkart.com上的搜索框,此代码的xpath是什么: 我已经尝试过x$('//input[contains='Search for products, brands and more']')

我正在尝试选择此元素:

<input type="text" value="" class="LM6RPg" title="Search for products, brands and more" name="q" autocomplete="off" placeholder="Search for products, brands and more">

1 个答案:

答案 0 :(得分:0)

您当前的XPath正在评估是否有一个input元素和一个contains元素,其值等于“搜索产品,品牌等”。

调整XPath中的谓词,以评估@title属性值是否等于该字符串:

x$('//input[@title='Search for products, brands and more']')