1.使用使用IntelliJ IDEA新建完Maven工程后;现在要在pom.xml中添加测试的jar包依赖
maven仓库地址:https://mvnrepository.com/
在这里搜索需要的jar包即可
比如找到selenium-java,找到需要的版本如3.12.0,把jar包配置复制到pom.xml;
比如找到selenium-java,找到需要的版本如3.12.0,把jar包配置复制到pom.xml;
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.12.0</version>
</dependency>
注意:<dependency></dependency>
标签外面一定要有<dependenc