Selenium搭建笔记一

1.本地测试
步骤参考 webdriver jar包
https://www.cnblogs.com/luohuasheng/p/10673577.html
https://www.cnblogs.com/luohuasheng/p/10673971.html

pom中webdriver maven 引入
https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>

猜你喜欢

转载自blog.51cto.com/ql0722/2468034