J'essaie d'exécuter la classe principale testNG en utilisant le fichier pom.xml en utilisant la commande ci-dessous dans Maven Run Configurations.
exec:Java -Dexec.mainClass=com.Selenium.controls.TestNGMainClass
Ici, j'utilise Java 8.
Mais j'ai eu l'erreur ci-dessous.
[INFO] ------------------------------------------------------------------------
[INFO] Building seleniumScriptsRegression 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- exec-maven-plugin:1.6.0:Java (default-cli) @ seleniumScriptsRegression ---
[WARNING] Java.lang.ClassNotFoundException: com.Selenium.controls.TestNGMainClass
at Java.net.URLClassLoader.findClass(Unknown Source)
at Java.lang.ClassLoader.loadClass(Unknown Source)
at Java.lang.ClassLoader.loadClass(Unknown Source)
at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.Java:270)
at Java.lang.Thread.run(Unknown Source)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.331 s
[INFO] Finished at: 2018-01-29T10:59:54+05:30
[INFO] Final Memory: 13M/32M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:Java (default-cli) on project seleniumScriptsRegression: An exception occured while executing the Java class. com.Selenium.controls.TestNGMainClass -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.Apache.org/confluence/display/MAVEN/MojoExecutionException
Veuillez m'aider à résoudre le problème.
En supposant que vous avez un Main.Java dans src/test/Java
Ajoutez ceci dans votre pom.xml
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>Main</mainClass>
</configuration>
<executions>
<execution>
<id>run-Selenium</id>
<phase>integration-test</phase>
<goals><goal>Java</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
et exécutez-le via:
mvn clean install
ou mvn exec:Java
pouvez-vous essayer d'exécuter cela sans votre ide (Eclipse)? pouvez-vous partager où vous trouvez votre classe principale dans le dossier cible maven?