Selenium RC 并点击面板链接!
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个 browser.waitForCondition("selenium.isElementPresent(\"id=" + var + "\")", "30000")
Try this browser.waitForCondition("selenium.isElementPresent(\"id=" + var + "\")", "30000")
顺便说一句:在定位器中指定控件 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.