我在 Localhost 上使用 Java、Gradle、TestNG、Selenium Hub 和 Node 并尝试并行运行 5 个测试,以下是示例代码。
这是基类:
package tests.temp;
import java.net.MalformedURLException;
import java.net.URL;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
public class TestBase
{
protected ThreadLocal<RemoteWebDriver> threadDriver = null;
@BeforeMethod
public void setUp() throws MalformedURLException {
threadDriver = new ThreadLocal<RemoteWebDriver>();
DesiredCapabilities dc = new DesiredCapabilities();
FirefoxProfile fp = new FirefoxProfile();
dc.setCapability(FirefoxDriver.PROFILE, fp);
dc.setBrowserName(DesiredCapabilities.firefox().getBrowserName());
threadDriver.set(new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), dc));
}
public WebDriver getDriver() {
return threadDriver.get();
}
@AfterMethod
public void closeBrowser() {
getDriver().quit();
}
}
这是 1 测试的示例。除名称和编号外,其他测试相同:
package tests.temp;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.testng.annotations.Test;
public class Test01 extends TestBase
{
@Test
public void testLink()throws Exception
{
getDriver().get("http://www.yandex.ru");
WebElement textBox = getDriver().findElement(By.name("text"));
textBox.sendKeys("First test");
System.out.println("First test thread-count=\"1\"");
}
}
一个带有 Suite 的 XML 文件,包含所有这 5 个测试:
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Parallel test runs" parallel="tests" thread-count="1">
<test name="Test_01">
<classes>
<class name="tests.temp.Test01" ></class>
</classes>
</test>
...
<test name="Test_05">
<classes>
<class name="tests.temp.Test05" ></class>
</classes>
</test>
</suite>
最后一个 - 带有 Suite runner 的 XML 文件:
<suite name="Parallel Test Suite">
<suite-files>
<suite-file path="./testRunner.xml" />
</suite-files>
</suite>
问题是:如果我在 TeamCity 中使用 thread-count="1" 构建日志看起来不错,但测试当然是按顺序运行的。 TeamCity 线程 = 1
如果 thread-count="2" 或任何其他值 - 构建日志看起来令人困惑并且测试计数器值不正确。但在 IDEA 中 - 一切都很酷且正确! TeamCity 线程 = 2
有谁知道如何解决这个问题??