我正在尝试使用两组浏览器进行并行执行。这就是testng.xml的样子:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite" parallel="tests" thread-count="2">
<test name="Test1" parallel="methods" thread-count="3">
<parameter name="browser" value="chrome"/>
<classes>
<class name="Test01" />
</classes>
</test>
<test name="Test2" parallel="methods" thread-count="3">
<parameter name="browser" value="firefox"/>
<classes>
<class name="Test02" />
</classes>
</test>
</suite>
因此,第一个测试类使用Chrome并行运行其方法。第二个Test Class使用Firefox并行运行其方法。该套件并行运行测试。
当我通过在IDE(Intellij IDEA)中右键单击来运行TestNG.xml时,它运行良好,并且可以看到所有测试都通过了。
但是,当我使用终端并使用“ mvn clean test”运行它时,我希望它能够运行并通过。相反,我收到以下错误:
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running TestSuite
Configuring TestNG with: TestNG652Configurator
Tests run: 12, Failures: 2, Errors: 0, Skipped: 10, Time elapsed: 0.862 sec <<< FAILURE! - in TestSuite
beforeTest(Test02) Time elapsed: 0.69 sec <<< FAILURE!
org.testng.TestNGException:
Parameter 'browser' is required by BeforeMethod on method beforeTest but has not been marked @Optional or defined
at org.testng.internal.Parameters.createParams(Parameters.java:290)
at org.testng.internal.Parameters.createParametersForMethod(Parameters.java:359)
at org.testng.internal.Parameters.createParameters(Parameters.java:620)
at org.testng.internal.Parameters.createConfigurationParameters(Parameters.java:190)
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:209)
这是pom的样子:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<executions>
<execution>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
这是@BeforeMethod:
@Parameters("browser")
@BeforeMethod
public void beforeTest(String browsers){
if(browsers.equals("chrome")){
logger.info("Starting Chrome Browser session in Headless mode");
ChromeOptions options = getChromeOptions();
setWebDriver(new ChromeDriver(options));
}else if(browsers.equals("firefox")){
logger.info("Starting Firefox Browser session in Headless mode");
FirefoxOptions firefoxOptions = getFirefoxOptions();
setWebDriver(new FirefoxDriver(firefoxOptions));
}
}
我在做什么错?尝试理解该错误后,我感到非常困惑。使用Intellij IDEA中的“运行”按钮如何使testng xml正常运行,但 mvn clean test 失败并显示上述错误?我想了解终端运行方式与IDE运行方式不同的逻辑。
答案 0 :(得分:0)
使用maven surefire插件并尝试在build标签下添加以下配置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
或作为参数传递:
mvn -Dsurefire.suiteXmlFiles=testng.xml clean test
答案 1 :(得分:0)
要运行testNg.xml,我们可以在标记<suiteXmlFile>.
中传递xml文件。
只有当您的项目遵循由maven创建的相同结构时,它才会起作用:src / main和src / test。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<skip>false</skip>
<forkCount>0</forkCount>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
如果您更改了结构,则需要在<sourceDirectory>
标记的文件夹中提及,例如我已使用src:
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<!-- plugin executes the testng tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<skip>false</skip>
<forkCount>0</forkCount>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>