在eclipse ide中执行脚本时出现TestNG错误

时间:2017-09-13 09:57:55

标签: selenium testng

enter image description here当我尝试使用testNG在selenium ide中执行脚本时出现错误

[RemoteTestNG] detected TestNG version 6.12.0
java.lang.NoSuchMethodError: org.testng.remote.support.RemoteTestNG6_12.initializeEverything()V
    at org.testng.remote.support.RemoteTestNG6_12.initialize(RemoteTestNG6_12.java:22)
    at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:97)
    at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
    at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)

1 个答案:

答案 0 :(得分:2)

检测到版本6.12但与其他版本一起运行看起来很奇怪。 AFAIK,selenium有一个嵌入式TestNG,绝对超过6.12。 从截图中,您可以调整库顺序,移动“参考库”的“TestNG”上方:右键单击项目 - >构建路径 - >配置构建路径... - >在“订购和导出”选项卡上,选择“TestNG”,然后单击“向上”按钮将其向上移动。 你也可以在这里分享示例项目:https://github.com/cbeust/testng-eclipse/issues/355,这样可以在TestNG Eclipse插件中进行正确的修复

编辑: 这是一个类路径问题,您需要删除冗余和旧的testng-6.0.jar

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="src" path="src"/>
    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
    <classpathentry kind="lib" path="D:/Softwares/selenium-java-3.4.0/lib/cglib-nodep-3.2.4.jar"/>
...
    <classpathentry kind="lib" path="D:/Softwares/selenium-java-3.4.0/client-combined-3.4.0-nodeps.jar"/>
<!-- Nick: you need to remove this entry: testng-6.0.jar, it's recommended to use TESTNG_CONTAINER  -->
    <classpathentry kind="lib" path="C:/Users/orange/Downloads/testng-6.0.jar"/>
    <classpathentry kind="con" path="org.testng.TESTNG_CONTAINER"/>
    <classpathentry kind="output" path="bin"/>
</classpath>