如何使用 Rspec 和 Capybara 使用验收测试来单击 href
我在页面源中有此内容:
<td class="gridData" route="default" reset="0" urlparams="users index edit {userID}" label="Username">
<a href="/de/users/index/edit/userID/56">UM-Employee</a>
</td>
有关如何测试此功能以单击用户链接的任何想法?
I have this content in the page source:
<td class="gridData" route="default" reset="0" urlparams="users index edit {userID}" label="Username">
<a href="/de/users/index/edit/userID/56">UM-Employee</a>
</td>
Any ideas on how to test this functionality to click on the user link?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
click_link("UM-Employee")
click_link("UM-Employee")
您可以使用链接文本(如下所示)或 id 标签(当然您必须将其引入 HTML 中)来识别 Capybara 应遵循的链接。
You can use the link text (as below) or an id-tag (which you would have to introduce into your HTML of course) to identify the link Capybara should follow.