私はTestNGを使って基本的なテストをしています。 invocationcount = 2、threadpoolsize = 2(テスト用)を使用してテストを実行すると、テストは現在実行中ですが、ブラウザは1つだけ開いていることがintellijでわかります。Java - Fluentlenium 1つのメソッドのスレッドでTestNGを実行する方法
相続人は私のコード:
public class GoogleTesting extends FluentTestNg {
// Defines the Driver
public WebDriver driver = new ChromeDriver();
@Override
public WebDriver newWebDriver() {
return driver;
}
@Test(invocationCount = 2, threadPoolSize = 2)
public void GoogleTest(){
goTo("http://google.com");
System.out.println(getCookies());
}
}
誰もがこの問題を解決する方法を知っていますか?
あなただけの1つのブラウザウィンドウを開いているので...テストメソッドの内部でドライバの初期化を移動し、 – Grasshopper