Selenium 测试套件:故障转移测试执行

发布于 2024-11-16 17:53:32 字数 323 浏览 0 评论 0原文

我有一个使用 Selenium-RC 和 TestNG 用 Ja​​va 编写的测试套件,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寒江雪… 2024-11-23 17:53:32

您可以实现自己的测试监听器并注释您的测试类。或者只是使用 @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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文