allure-environment-writer
allure-environment-writer copied to clipboard
allure and some conflicts
in case in pom have first com.github.automatedowl, Allure class losts its methods (for example : step())
but if first is io.qameta.allure in pom it works properly
<dependency>
<groupId>com.github.automatedowl</groupId>
<artifactId>allure-environment-writer</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-junit5</artifactId>
<version>2.16.1</version>
</dependency>
also if I have in pom
<dependency>
<groupId>com.github.automatedowl</groupId>
<artifactId>allure-environment-writer</artifactId>
<version>1.0.0</version>
</dependency>
I always get exception : java.lang.RuntimeException: org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure. I use java11 I tried to put it after all dependencies but still got this java.lang.RuntimeException
Which Selenium version you use? @BBSoftPro