一、使用IDEA添加依赖
1.新建maven项目
2.在pom.xml中添加下面代码
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
或在maven仓库搜索Selenium Java找最新版
地址:https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
二、driver驱动安装配置
1.查看浏览器版本(若不是最新版 更新到最新版)
2.下载驱动(压缩包解压后:geckodriver.exe)
Firefox驱动下载地址:https://github.com/mozilla/geckodriver/releases/(此地址为最新版驱动)
3.将geckodriver.exe放到浏览器安装路径下
我的火狐安装路径:C:\Program Files\Mozilla Firefox
4.环境变量
a.打开环境变量
b.在PATH路径加:C:\Program Files\Mozilla Firefox
三、代码运行
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import java.util.concurrent.TimeUnit;
public class seleniumtest {
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver","C:\\Program Files\\Mozilla Firefox\\geckodriver.exe");
System.setProperty("webdriver.firefox.bin","C:\\Program Files\\Mozilla Firefox\\firefox.exe");
WebDriver driver=new FirefoxDriver();
String testUrl="http://www.baidu.com";
driver.get(testUrl);
// driver.quit();
}
}
版权归原作者 再萌一点点 所有, 如有侵权,请联系我们删除。