黄瓜中的 click_link 图像
<a href="/videos/21-running">
<img height="120" src="/images/sample-image.jpg" alt="Running">
</a>
请支持我通过 alt 或 src 单击 cucumber 中的链接。谢谢。
<a href="/videos/21-running">
<img height="120" src="/images/sample-image.jpg" alt="Running">
</a>
Please support me a way click link in cucumber by alt or src. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用 capybara 来支持您的黄瓜规格,类似以下步骤的操作应该可以解决问题。
在规范中,您现在可以说
总体思路是您需要某种自定义步骤来处理此问题。
Assuming you are using
capybara
to back your cucumber specs something like the following step should do the trick.In the spec you can now just say
The general idea is that you need some kind of custom step to handle this.