Я пытаюсь настроить проект Selenium + Cucumber на Java (я новичок в Java) в Intellij.Это мой класс, который использует бегун Cucumber JUnit:
package runtest;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions (
features = "C:\\Users\\my-feature.feature",
)
public class RunTest {
}
Я получаю следующие ошибки:
Error:(8, 1) java: annotation @org.junit.runner.RunWith is missing default values for elements annotationType,<init>
Error:(8, 2) java: org.junit.runner.RunWith is not an annotation type
Я не знаю, как решить эту проблему или что происходит.Пожалуйста, помогите.