为什么我的 .feature 文件显示 "Undefined step reference",尽管我的黄瓜测试 运行 正常并检测到步骤?
Why is my .feature file saying "Undefined step reference", although my cucumber tests run fine and detect the steps?
当我查看 .feature 文件时,Intellij 说我的步骤未定义。
Intellij undefined step
但是 cucumber .feature 文件运行良好,并且在步骤上肯定是匹配的。
我的 TestNG 运行器代码:
package package1;
import io.cucumber.testng.AbstractTestNGCucumberTests;
import io.cucumber.testng.CucumberOptions;
import org.testng.annotations.DataProvider;
@CucumberOptions(plugin = "pretty", features = "src/test/resources/package1", glue = "package1")
public class Runner extends AbstractTestNGCucumberTests {
@Override
@DataProvider(parallel = true)
public Object[][] scenarios() {
return super.scenarios();
}
}
特征文件中的步骤:
Feature: test feature
Scenario: test feature scenario
Given there has been a pebkac
我在 StepDefinitions 文件中的步骤:
Given("there has been a pebkac", () -> {
//driver.findElement(By.id("editTextFieldId")).sendKeys("test");
autoTools.getElement(new String[]{"editTextFieldId", "IOSIDHERE"}, AutomationTools.IdType.DEFAULT, 15).sendKeys("test");
System.out.format("test: %n\n");
//throw new cucumber.api.PendingException();
});
为什么 intellij 抱怨找不到这一步?我尝试使用带有注释的步骤定义文件,并将 运行 用于同一问题。
我注意到,如果我转到功能文件并右键单击 -> 添加步骤,它会使用已弃用的 Given 方法添加一个步骤。这让我觉得我可能使用了错误的依赖项,尽管我是从他们网站上的黄瓜教程中获得的。
我的依赖项:
dependencies {
testImplementation 'io.cucumber:cucumber-java:4.7.4'
compile group: 'org.testng', name: 'testng', version: '6.14.3'
compile group: 'io.cucumber', name: 'cucumber-testng', version: '4.7.4'
compile group: 'io.appium', name: 'java-client', version: '7.1.0'
}
Intellij 已过时,更新它解决了这个问题。
当我查看 .feature 文件时,Intellij 说我的步骤未定义。
Intellij undefined step
但是 cucumber .feature 文件运行良好,并且在步骤上肯定是匹配的。
我的 TestNG 运行器代码:
package package1;
import io.cucumber.testng.AbstractTestNGCucumberTests;
import io.cucumber.testng.CucumberOptions;
import org.testng.annotations.DataProvider;
@CucumberOptions(plugin = "pretty", features = "src/test/resources/package1", glue = "package1")
public class Runner extends AbstractTestNGCucumberTests {
@Override
@DataProvider(parallel = true)
public Object[][] scenarios() {
return super.scenarios();
}
}
特征文件中的步骤:
Feature: test feature
Scenario: test feature scenario
Given there has been a pebkac
我在 StepDefinitions 文件中的步骤:
Given("there has been a pebkac", () -> {
//driver.findElement(By.id("editTextFieldId")).sendKeys("test");
autoTools.getElement(new String[]{"editTextFieldId", "IOSIDHERE"}, AutomationTools.IdType.DEFAULT, 15).sendKeys("test");
System.out.format("test: %n\n");
//throw new cucumber.api.PendingException();
});
为什么 intellij 抱怨找不到这一步?我尝试使用带有注释的步骤定义文件,并将 运行 用于同一问题。
我注意到,如果我转到功能文件并右键单击 -> 添加步骤,它会使用已弃用的 Given 方法添加一个步骤。这让我觉得我可能使用了错误的依赖项,尽管我是从他们网站上的黄瓜教程中获得的。
我的依赖项:
dependencies {
testImplementation 'io.cucumber:cucumber-java:4.7.4'
compile group: 'org.testng', name: 'testng', version: '6.14.3'
compile group: 'io.cucumber', name: 'cucumber-testng', version: '4.7.4'
compile group: 'io.appium', name: 'java-client', version: '7.1.0'
}
Intellij 已过时,更新它解决了这个问题。