我想在黄瓜范围报告中显示动态值
例如:
功能文件
输入用户标识为<“ userid”>
然后将当前时间输入为<“ currenttime”>
示例:
|用户名|当前时间|
| 10002 |今天|
定义文件:
@And("^enter the current time as (.*)")
public void currenttime(String arg1) {
SimpleDateFormat formatter = new SimpleDateFormat("HH:MM");
Date date = new Date();
System.out.println(formatter.format(date));
if (arg1 == "today") {
driver.findElement(By.id("period")).sendKeys(formatter.format(date));
}
}
在黄瓜覆盖率报告中:它仅显示“今天”,而不显示动态值(当前时间=“ 07:18”)
请指导我。