Selenium assertText 用于表中的所有文本?
我需要通过 selenium IDE 或 Java 测试用例断言表中的每一行都包含特定的文本字符串。最好的方法是什么?这是我当前的测试:
Command assertText
Target //table[@id='myTable']//tbody//tr[not(@style)]/td[1]
Value myValue
我需要测试每一行的第一列,但这仅测试第一行。有没有一种简单的方法来测试每一行?
I need to assert that each row in table contains a certain text string, either through selenium IDE or a Java test case. What's the best way to do this? Here's my current test:
Command assertText
Target //table[@id='myTable']//tbody//tr[not(@style)]/td[1]
Value myValue
I need to test the first column of every row, but this only tests the first row. Is there an easy way to test every row?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有使用selenium IDE,只使用过java API,所以这里是我如何在java中做到这一点(或者至少是基本想法)
I haven't used selenium IDE, only the java API, so here how I'd do it in java (or the basic idea at least)