How to use Serenity with Junit5?
问题 I'm trying to run Serenity Tests in my maven project. I'm using junit-jupiter-engine 5.3.1. (It's in the parent pom.) I'm getting multiple error. Is it because the JUnit's version or is there something else? How can I solve it? My test class: @RunWith(SerenityRunner.class) public class MyTestClass { private static final String CHARACTER_ENCODING_UTF_8 = "UTF-8"; @Steps private ApiSteps apiSteps; @Test public void aTest() { try { String filePath = "initiatepayment/input.xml"; Client client =