GWT 的 Selenium xpath 问题

发布于 2024-12-10 17:54:09 字数 631 浏览 0 评论 0原文

我的屏幕上有一个按钮,其文本是“运行查询”。我正在尝试单击相同的内容并编写 xpath,因为 ids 是动态生成的。

selenium.click("//button[contains(text(), \"Run Query\"]");

这给了我错误

com.thoughtworks.selenium.SeleniumException: ERROR: Invalid xpath [2]: //button[contains(text(), "Run Query"]

,我也尝试过

selenium.click("//button[text() = \"Run Query\"]");

我得到的地方:

com.thoughtworks.selenium.SeleniumException: ERROR: Element //button[text() = "Run Query"] not found

我正在使用 硒RC:selenium-java-2.8.0.jar 硒服务器:selenium-server-standalone-2.8.0.jar 与火狐5.0

I have a button in the screen, whose text is 'Run Query'. I am trying to click on the same, and writing xpath, as the ids are getting generated dynamically.

selenium.click("//button[contains(text(), \"Run Query\"]");

which gives me error

com.thoughtworks.selenium.SeleniumException: ERROR: Invalid xpath [2]: //button[contains(text(), "Run Query"]

also I tried with

selenium.click("//button[text() = \"Run Query\"]");

where I am getting :

com.thoughtworks.selenium.SeleniumException: ERROR: Element //button[text() = "Run Query"] not found

I am using
Selenium RC: selenium-java-2.8.0.jar
Selenium server: selenium-server-standalone-2.8.0.jar
with firefox5.0

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

春风十里 2024-12-17 17:54:09

有几种方法可以处理这种情况,首先您可以尝试使用 xapth 中提供的标准化空间函数

示例: selenium.click("//button[normalize-space(text())=\"运行查询\"]")

如果这不起作用,请尝试查找该按钮的周围区域,并使用该按钮周围的任何稳定图标通过该稳定属性/图标来精确定位该按钮。

在 xpath 中,您可以使用 Axises、following、parent 等 使用这些函数来访问按钮,而不是直接尝试使用按钮。这是识别动态按钮的最佳方法。

祝你好运。

There are couple of way you can handle this situation first you can try using the normalize-space function which is available in xapth

Example: selenium.click("//button[normalize-space(text())=\"Run Query\"]")

If this doesn't work try to look for the surround area of that button and use any stable icon around that button to pin point the button via that stable attribute/icon.

in xpath you can use Axises, following, parent etc use those function to get to the button rather than directly trying to use the button. Thats the best way to identify the Dynamic button.

Good Luck.

疏忽 2024-12-17 17:54:09

尝试将 text() 替换为 . (点)。

selenium.click("//button[.=\"Run Query\"]")

try replacing text() with a . (dot).

selenium.click("//button[.=\"Run Query\"]")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文