如何减少执行Selenium测试用例的时间?

发布于 2024-12-05 21:32:22 字数 176 浏览 2 评论 0原文

我正在为每个屏幕编写 Selenium 测试用例来测试不同的场景。在我们 Jenkins 中每个构建的项目中,其 Selenium 测试用例 (QA) 也会自动运行。

我的问题是,即使它是自动化的,它也需要很多时间来运行。我有 380 个测试用例,需要 20-25 分钟。我怎样才能减少时间?还有其他方法或技巧可以遵循吗?

I'm writing the Selenium test cases for each screen to test the different scenarios. In our project for each build in Jenkins, its Selenium test cases (QA) also runs automatically.

My problem is even though it's automated, it's taking a lot of time to run. I have 380 test cases and it's taking 20-25 minutes. How can I reduce the time? Are there any other ways or techniques to follow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

相权↑美人 2024-12-12 21:32:22

您可以检查 Selenium 网格选项,它将帮助您并行运行测试。
http://selenium-grid.seleniumhq.org/

you can check for the Selenium grid option, which will help you to run the tests in parallel.
http://selenium-grid.seleniumhq.org/

筑梦 2024-12-12 21:32:22

在您拥有的 380 个测试用例中,检查所有测试用例是否都是真正需要的。如果需要所有测试用例,请检查您是否有任何重复验证,并查看是否可以删除其中任何一个。

如果您在测试用例中使用等待时间,请查看是否可以减少等待时间而不影响测试用例的输出。

最好的办法是将它们分成单独的组,并使用 Grid 在不同的机器上运行它们。或者使用 TestNg/JUnit 并行运行测试用例。

在 TestNg 中,在 testng.xml 文件中,您可以使用以下命令并行运行它们

In the 380 testcases you have , check if all the testcases are really required . If all the testcases are required , check if u are having any repeated validations and see if you can remove any one of them .

If you are using wait time in your testcases , see if you can reduce the wait times with out affecting the output of the testcases .

The best thing would be to split them in to seperate groups and run them in different machines using Grid . Or use TestNg/JUnit to run the testCases parallely .

In TestNg , in the testng.xml file , u can use the following to run them in parallel

<suite name="ParallelTests" verbose="5" parallel="methods" thread-count="10">

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