如何获得XPath
How to get xpath on given page for Dresses Category (image with Dresses text)
我尝试了以下方法: 动作动作=新操作(驱动程序);
Webelement Blothestyle = driver.findelement(by.xpath(“ // span [@data-csa-c-id ='8nt4i-t93vdn-vkyjb-b2c2aj']”)); action.movetoelement(blotesyle).build()。persim();
但是NosuchelementException即将到来
How to get xpath on given page for Dresses Category (image with Dresses text)
i tried this :
Actions action = new Actions(driver);
WebElement clothestyle =
driver.findElement(By.xpath("//span[@data-csa-c-id='8nt4i-t93vdn-vkyjb-b2c2aj']"));
action.moveToElement(clothestyle).build().perform();
But NoSuchElementException is coming
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试找到更多简单的XPath,您的似乎是基于自动生成的数据,因此很快就会过期。
尝试类似的内容:
或者
,如果您只需要打开部分,请单击元素就足够了:
Try to find more simple Xpath, your's seems be based on auto-generated data, so can expired soon.
Try something like:
or
Also, if you need just open section, clicking element should be enough: