Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
853 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try with package- io.cucumber.java


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...