allure-environment-writer icon indicating copy to clipboard operation
allure-environment-writer copied to clipboard

allure and some conflicts

Open BBSoftPro opened this issue 2 years ago • 1 comments

in case in pom have first com.github.automatedowl, Allure class losts its methods (for example : step()) image

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

BBSoftPro avatar Sep 07 '23 15:09 BBSoftPro

Which Selenium version you use? @BBSoftPro

AutomatedOwl avatar Dec 12 '23 09:12 AutomatedOwl