并行运行测试时,Selenium处理ProtocolHandshake错误

时间:2020-07-01 09:49:05

标签: java selenium automated-tests selenium-chromedriver testng

我尝试练习使用TestNG invocationCountthreadPoolSize并行执行测试。

A。我编写了这样的多合一测试,并且成功了

@Test(invocationCount = 5, threadPoolSize = 5)
public void testThreadPool() {        
    WebDriver driver = new ChromeDriver();
    driver.get("http://www.google.com");
    driver.findElement(By.name("q")).sendKeys("Amazon");
    driver.quit();*/        
}

=>同时(并行)打开5个Chrome浏览器,并成功执行测试。

B。我在@before和@after中定义了我的测试,它不起作用

@BeforeTest
public void setUp() {
   WebDriver driver = driverManager.setupDriver("chrome");
}

@Test(invocationCount = 5, threadPoolSize = 5)
public void testThreadPool() {    
    driver.get("http://www.google.com");
    driver.findElement(By.name("q")).sendKeys("Amazon");            
}

@AfterTest
public void tearDown() {
   driver.quit()
}

=>打开1个chrome浏览器,似乎刷新了5次,最后,在文本字段中输入了5个Amazon单词,并显示以下日志消息:

[1593594530,792][SEVERE]: bind() failed: Cannot assign requested address (99)
ChromeDriver was started successfully.
Jul 01, 2020 11:08:51 AM org.openqa.selenium.remote.ProtocolHandshake createSession

我了解到,对于B,5个线程使用相同的对象驱动程序,这就是为什么只打开一个镶边的原因。但是在这种情况下,我不知道如何管理驱动程序对象,因此我可以获得与A中相同的结果。

任何想法表示赞赏。

1 个答案:

答案 0 :(得分:1)

您可以使用ThreadLocal类使您的Webdriver Threadsafe

private ThreadLocal<WebDriver> webdriver = new ThreadLocal<WebDriver>();

   @BeforeMethod
    public void setUp() {
       webdriver.set(driverManager.setupDriver("chrome"));
    }
    
    @Test(invocationCount = 5, threadPoolSize = 5)
    public void testThreadPool() {    
        webdriver.get().get("http://www.google.com");
        webdriver.get().findElement(By.name("q")).sendKeys("Amazon");            
    }
    
    @AfterMethod
    public void tearDown() {
       webdriver.get().quit()
    }

编辑:您将需要在上述上下文中使用BeforeMethod / AfterMethod。