healenium / healenium-web

Self-healing library for Selenium Web-based tests
Apache License 2.0
170 stars 40 forks source link

[Need support]: Tests are not found via mvn test #281

Open ArinaNichko opened 2 months ago

ArinaNichko commented 2 months ago

Describe the problem

Earlier I had healenium 3.1.6 and I can run tests using ide for run and command run, when I updated to 3.5.0, I can not run tests, because it didn't see it. (build succesfull). I saw example healenium + maven + junit with the same version of surefile plugin and healenium, tests are running, but with this not:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>${maven-surefire-plugin.version}</version>
            <configuration>
                <suiteXmlFiles>
                    <suiteXmlFile>${suiteXmlFile}</suiteXmlFile>
                </suiteXmlFiles>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>${maven-compiler-plugin.version}</version>
            <configuration>
                <source>17</source>
                <target>17</target>
            </configuration>
        </plugin>
    </plugins>
</build>

Healenium Web version

3.5.0

Healenium Backend version

-

Selenium version

4.17

Platform

Java 17

Properties file

No response

Logs appeared during using Healenium

No

Additional context

No response