MSTEST 中的 Selenium webdriver 并行测试
快速问题,是否可以使用 selenium webdriver C# 和 MSTEST 运行并行测试?
如果是的话怎么办?
我尝试将其添加到我的本地测试设置中,但它没有改变任何内容,测试仍然一次运行一个。
<Execution parallelTestCount="2">
感谢您的帮助:)
Quick question, is it possible to run parallel test using selenium webdriver C# and MSTEST?
If yes then how?
I have tried adding this to my local test settings but it didn't change anything, the tests still ran one at a time.
<Execution parallelTestCount="2">
Thanks for the help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎是因为我只有 1 个具有多种方法的测试类。无论如何,它现在可以工作,我能想到的唯一变化是我在多个测试类中有多种测试方法。
Seems like it was because i only has 1 test class with multiple methods. In anycase it works now and only change i can think of is that i have multiple test methods across multiple testclasses.