无法检测 Selenium RC 中的 href 组件

发布于 2024-08-26 11:06:45 字数 704 浏览 2 评论 0原文

我的应用程序中有以下链接“测试”。

当我尝试 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 技术交流群。

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

发布评论

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

评论(2

陌路黄昏 2024-09-02 11:06:45

Xpath: //div[@class='tabUnselectedText']/a

Xpath: //div[@class='tabUnselectedText']/a

孤独陪着我 2024-09-02 11:06:45

尝试使用 Selenium.ClickAt()

Try with Selenium.ClickAt()

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