AutomatedOwl / allure-environment-writer

Java library which allows to write environment.xml file into allure-results directory.
Apache License 2.0
25 stars 5 forks source link

allure and some conflicts #9

Open BBSoftPro opened 1 year ago

BBSoftPro commented 1 year ago

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

AutomatedOwl commented 9 months ago

Which Selenium version you use? @BBSoftPro