无法在最新的 Eclipse 中安装 TestNG 插件 IDE

Unable to install TestNG plugin in latest Eclipse IDE

我在最新的 Eclipse 中尝试安装 TestNG 时出现以下错误:

我的项目在测试框架中使用 TestNG,谁能帮忙解决这个问题

请按照以下步骤操作,任何人都可以在任何版本的 Eclipse 中运行 testNG:

  1. 从 github 下载源代码:testNG Source in Git 并选择适合您需要的任何版本

  1. 下载后将文件夹解压到eclipse目录:假设您将其保存在C:驱动器中,那么您解压的路径是: C:\eclipse\dropins : 最好使用 7zip 提取器将其解压缩到目录

  2. 解压并将文件夹放入eclipse dropins文件夹

  3. 解压后,您需要在文件夹中添加一个文件:site.xml。创建一个 site.xml 文件并添加以下详细信息:在引用 的地方,请不要忘记添加下载的 testNG 版本

     <?xml version="1.0" encoding="UTF-8"?>
     <site>
    <feature url="features/org.testng.eclipse_<TestNG_Version_downloaded>.jar" id="org.testng.eclipse" version="<TestNG_Version_downloaded>">
       <category name="org.testng.eclipse"/>
    </feature>
    <feature url="features/org.testng.eclipse.maven.feature_7.0.0.201908240652.jar" id="org.testng.eclipse.maven.feature" version="<TestNG_Version>">
       <category name="org.testng.eclipse"/>
    </feature>
    <category-def name="org.testng.eclipse" label="TestNG"/>
    

和xml文件内容仅供参考:

  1. 一旦一切都完成了: 转到 Eclipse,然后执行 ctrl+N,您可以看到菜单中出现了 testNG,就这样,您就可以使用 TestNG 了。编码愉快!!