I’m working with Gradle 7.6 and Cucumber, i want to execute my tests by command line using tags but the browser does not start and I get the following output:
in my build.gradle file i declare
test {
systemProperty “cucumberOptions”, System.getProperty(“cucumber.options”)
}
and my runner file:

Please Help me!! :(
I think the system properties are not a task input automatically, so the task is seen as up-to-date.
You can either use --rerun to rerun the task manually, or define the cucumber options as task input using inputs.property so that the task is only up to date if the same value was used on the last run.