我正在使用TestNG
框架为我的应用程序编写测试用例Android
。我正在使用Appium
测试工具。
为此,我定义了以下文件:
pom.xml
文件 - 依赖项所需
一班BaseTest.java
_
两个儿童班级从BaseTest.java
testng.xml
文件 - 定义其中运行的测试类。
为了更好地理解我的问题发布类和 xml 文件。
这是pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.testing</groupId>
<artifactId>android-appium</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>7.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
这是BaseTest.java班级
import org.testng.annotations.AfterSuite;
import org.testng.annotations.BeforeSuite;
public class BaseTest {
@BeforeSuite
public void setUp()
{
}
@AfterSuite
public void tearDown()
{
}
}
splashScreen_2()
当我使用 appium 工具运行此代码时,在类的第二个函数上FirstTest.java
出现错误“测试被忽略”并且它无法正常运行。secondScnario_2
但是,当我在文件中取消注释testng.xml
并注释 FirstScenario_1 时,我的测试用例会正常运行(正如我在注释中提到的那样)并且 Android 应用程序会正确地一一执行每个函数。
但我想<test> </test>
执行testng.xml
.
如果我secondScnario_2
在testng.xml
文件中使用,那么我需要为每个场景提供单独的测试名称。我只想使用一个测试名称。所以当我FirstScenario_1
在文件中使用时,为什么这里会发生忽略测试testng.xml
的错误 ?
慕斯王
相关分类