我使用 Serenity (Thucydides) + Cucumber 在 Chrome 浏览器中测试 Web 应用程序。我想验证页面上是否存在某些元素。
Scenario Outline: Should see six tabs on the page
When I am on MainPage page
Then I should see the following <tab> as tab:
Examples:
| tab |
| Tab_1 |
| Tab_2 |
| Tab_3 |
| Tab_4 |
我成功验证了第一个选项卡,但在第一次迭代后重新加载页面时无法验证其他选项卡。如何保持在同一页面上?在我的情况下可以管理吗?