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

Categories

0 votes
824 views
in Technique[技术] by (71.8m points)

cucumber - BeforeStep AfterStep aren't called

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

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

1 Answer

0 votes
by (71.8m points)

Try with package- io.cucumber.java


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...