无法检测 Selenium RC 中的 href 组件
我的应用程序中有以下链接“测试”。
当我尝试 Selenium IDE 时,它给出了以下代码。相同的代码不适用于 RC 。请帮我解决这个问题
selenium.click("link=Test"); // 使用 Selenium IDE 生成的代码同样不适用于 RC。它说元素不是
另一种情况:
15:45:04.627 信息 - 命令请求:在会话 2d985d284 上单击 [link=Test, ] 6694d888ee13a986dc8cf67 15:45:04.658 信息 - 得到结果:错误:元素链接=在 sessio 上找不到测试 2d985d2846694d888ee13a986dc8cf67
I have the following link 'Test' in my application.
<div class="tabUnselectedText" align="center">
<a href="javascript:renderPage('mainForm:consoleBeanId.3','Test' , 'testdetails.faces');">Test</a>
</div>
When I tried Selenium IDE it gives me following code. The same code does not work with RC . Please help me out with this
selenium.click("link=Test"); // code generated with Selenium IDE and same does not work with RC. It says element is not
One more case:
<div class="tabUnselectedText" align="center">
<a href="javascript:renderPage('mainForm:consoleBeanId.1','Notifications' , 'notifications.faces');">Notifications</a>
</div>
15:45:04.627 INFO - Command request: click[link=Test, ] on session 2d985d284
6694d888ee13a986dc8cf67
15:45:04.658 INFO - Got result: ERROR: Element link=Test not found on sessio
n 2d985d2846694d888ee13a986dc8cf67
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Xpath: //div[@class='tabUnselectedText']/a
Xpath: //div[@class='tabUnselectedText']/a
尝试使用 Selenium.ClickAt()
Try with Selenium.ClickAt()