Selenium 测试套件:故障转移测试执行
我有一个使用 Selenium-RC 和 TestNG 用 Java 编写的测试套件,
public class testSuite extends SelenestTestCase {
@BeforeTest
...
@Test
...
@Test
...
@AfterTest
...
为了提高鲁棒性,我需要实现一组步骤,如果 @Test
失败。这些步骤可以简单地恢复初始测试状态,以便可以执行下一个@Test
。
关于如何在这个框架内实现这一点有什么想法吗?
谢谢。
I have a test suite written up in Java using Selenium-RC and TestNG, per -
public class testSuite extends SelenestTestCase {
@BeforeTest
...
@Test
...
@Test
...
@AfterTest
...
To improve robustness, I need to implement a set of steps that would be executed in case any of the commands within a @Test
fails. These steps could simply be the restoration of the initial test state, so the next @Test
can be executed.
Any ideas on how this can be implemented within this framework?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实现自己的测试监听器并注释您的测试类。或者只是使用 @BeforeMethod 并在每次测试之前设置初始状态。
You can implement your own test listener and annotate your test class. Or just use @BeforeMethod and set the initial state before each test.