Selenium RC 并点击面板链接!

发布于 2024-07-17 14:50:37 字数 372 浏览 5 评论 0原文

我正在尝试使用 Selenium RC 单击页面中的面板链接(同一页面但不同面板中的链接)。 我可以通过使用以下方法来做到这一点:

browser.waitForCondition("selenium.isElementPresent(\"id=placeOrderLink\")", "30000")

但我想使其通用,我尝试使用:

String var="放置订单链接";

browser.waitForCondition("\"selenium.isElementPresent(\\"id="+var+"\\")\"", "30000");

但它不起作用! 我收到一个错误。 我正在使用 Java 来编写我的测试套件。

I'm trying to click on the panel links (links in the same page but different panel) in the page using Selenium RC. I'm able to do it by using:

browser.waitForCondition("selenium.isElementPresent(\"id=placeOrderLink\")", "30000")

but I want to make it generic and I tried to use:

String var="placeOrderLink";

browser.waitForCondition("\"selenium.isElementPresent(\\"id="+var+"\\")\"", "30000");

and it doesnt work! I get an error.
I'm using Java to code my test suite.

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

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

发布评论

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

评论(2

你怎么敢 2024-07-24 14:50:37

试试这个 browser.waitForCondition("selenium.isElementPresent(\"id=" + var + "\")", "30000")

Try this browser.waitForCondition("selenium.isElementPresent(\"id=" + var + "\")", "30000")

躲猫猫 2024-07-24 14:50:37

顺便说一句:在定位器中指定控件 ID 时,不需要“id=controlID” - 控件 ID 定位器是默认定位器,因此“controlID” >”就够了。

BTW: you don't need "id=controlID" when specifying control ID's in locators - control ID locator is the default one, so "controlID" is enough.

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