package org.example.webtests.runner; import io.cucumber.junit.Cucumber; import io.cucumber.junit.CucumberOptions; import org.junit.runner.RunWith; @RunWith(Cucumber.class) @CucumberOptions( features = "src/test/java/org/example/webtests/features/", glue = {"org.example.webtests.steps"}, plugin = {"pretty"}, publish = true ) public class DemoRunner { }