我尝试在我的功能文件中添加一个标签(在eclipse中使用黄瓜插件)但是当我运行我的功能文件时它会给我一个错误:
Exception in thread "main" gherkin.TagExpression$BadTagException: Bad tag: "env" What am I doing wrong?
我想要的是当我运行测试时,我希望它在运行场景之前先设置环境:
功能示例:
Feature: Log into an account
@env
Scenario: Log Into Account With Correct Details
Given User navigates to stackoverflow website
环境设置类:
@Before("env")
public void setEnvironment() {
System.setProperty("webdriver.chrome.driver", "xxx//chromedriver.exe");
this.driver = new ChromeDriver();
ActiveEnvironment = LivePortal;
EnvironmentUsed.add(ActiveEnvironment);
driver.manage().window().maximize();
}
答案 0 :(得分:1)
需要为Before注释添加'@'
@Before("@env")
public void setEnvironment() {
答案 1 :(得分:0)
您必须确保在关键字之前添加@,并且如果有多个,则应如下所示
tags="@Smoke-Login,@Smoke_Campaign,@Sanity-Campaign,@Smoke-Dashboard"
如果是一个
tags="@Smoke-Login"