I created a hook and is using @Before, @After , @BeforeStep, @AfterStep. 1. The pom I set is as below:
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
<version>4.2.0</version>
</dependency>
with this setting,Only @Before, @After work.@BeforeStep, @AfterStep don't work. How to fix it.
If I change the version of cucumber-java to latest version 6.9.1 But the following are invalid,
import cucumber.api.java.AfterStep;
import cucumber.api.java.BeforeStep;
which package should I import?
Is anyone able to help me fix it.
question from:https://stackoverflow.com/questions/65839308/beforestep-afterstep-arent-called