我在脱机Intellij中配置Selenium时遇到问题。问题是,当我配置Maven项目并将依赖项添加到pom.xml时,Intellij试图下载所有更新,但它没有访问权限,防火墙阻止了它。我可以下载mySlef的Selenium和TestNg存储库并在项目中实现它吗?如果是,那我该如何配置?非常感谢您的回复。
答案 0 :(得分:0)
手动下载与Selenium和TestNG相关的jar文件,并将它们保存到项目文件夹中,然后将它们添加为依赖项作为系统范围,并通过其完整路径对其进行引用。考虑一下JAR位于/ lib中。然后在您的pom.xml文件中添加依赖项,如下所示:
<dependency>
<groupId>com.roufid.tutorials</groupId>
<artifactId>example-app</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/lib/yourJar.jar</systemPath>
</dependency>
// ${basedir} represents the directory containing pom.xml.