gpt4 book ai didi

selenium - Webdriver + TestNG 的 Selenium Grid 并行执行问题

转载 作者:行者123 更新时间:2023-12-02 18:57:59 25 4
gpt4 key购买 nike

我正在尝试使用 Webdriver Hub 和 TestNG 并行机制设置 Webdriver 并行执行。我遇到了线程问题

我有一个扩展 TestBaseSetUp 的类,它有一个 BeforeMethod 和 AfterMethod 并设置为始终运行。对于 webdriver 并行执行,我想使用 ThreadLocal,但是 @Test 和 @Before/@After 方法位于不同的线程中。因此,如果我在 TestBaseSetUp 中将 webdriver 设置为 ThreadLocal,并尝试在我的测试方法中获取它,它会返回 null。

public class TestCheck extends TestBaseSetUp {
@Test
public void test(){
System.out.println("Thread in test " + Thread.currentThread().getId());

}}

我们有没有办法让@Test也与@Before/@After方法在同一个线程中

最佳答案

@Manish_pat

看看我的这篇博文:https://rationaleemotions.wordpress.com/2013/07/31/parallel-webdriver-executions-using-testng/这个想法是从依赖配置方法来实例化 Web 驱动程序,转变为 TestNG 监听器驱动模型,其中 Webdriver 对象是从 beforeInvocation() 中创建并在 afterInitation() 中销毁的。TestNG 保证 beforeInitation()、@Test 和 afterInitation() 始终在同一个线程上执行。所以现在您可以继续在这里使用 ThreadLocal。

关于selenium - Webdriver + TestNG 的 Selenium Grid 并行执行问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37241922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com