Retrieve parameter value from testNG.xml file(从 testNG.xml 文件中检索参数值)
问题描述
我想从键 parameter name ="webdriver.deviceName.iPhone" 打印值 "iPhone5" .
I want to print the value "iPhone5" from the key parameter name ="webdriver.deviceName.iPhone" .
推荐答案
基本上有两种方法可以在测试类中执行此操作(测试类本质上是一个包含一个或多个 @Test 的类/配置方法)
There are basically two ways in which you do this from within a Test Class (A test class is essentially a class that houses one or more @Test/configuration methods)
- 通过
ITestContext对象.您可以通过调用Reporter.getCurrentTestResult().getTestContext() 来访问当前方法的 - 使用原生注入,其中您有 TestNG 注入
ITestContext对象.有关本地注入的更多详细信息,请参阅 TestNG 文档此处
ITestResult 对象- Via the
ITestContextobject. You can get access to the current method'sITestResultobject by callingReporter.getCurrentTestResult().getTestContext() - Using Native injection wherein you have TestNG inject a
ITestContextobject. For more details on native injection please refer to the TestNG documentation here
这里有一个示例,展示了这两种情况.
Here's a sample that shows both these in action.
import org.testng.ITestContext;
import org.testng.Reporter;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class SampleTestClass {
private static final String KEY = "webdriver.deviceName.iPhone";
@BeforeClass
public void beforeClass(ITestContext context) {
String value = context.getCurrentXmlTest().getParameter(KEY);
System.err.println("webdriver.deviceName.iPhone = " + value);
}
@Test
public void testMethod() {
String value = Reporter.getCurrentTestResult().getTestContext().getCurrentXmlTest().getParameter(KEY);
System.err.println("webdriver.deviceName.iPhone = " + value);
}
}
这篇关于从 testNG.xml 文件中检索参数值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 testNG.xml 文件中检索参数值
基础教程推荐
- Struts2 URL 无法访问 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
