package com.bwf.autotest.day01;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class TestEV {
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
//手工指定浏览器的安装路径
// System.setProperty("webdriver.firefox.bin","D://Program Files//Mozilla Firefox//firefox.exe");
//手工指定驱动程序路径
// System.setProperty("Webdriver.gecko.driver","C://Program Files//Java//jdk1.8.0_291//bin//geckodriver.exe");
//打开一个浏览器
driver.get("http://www.baidu.com");
}
}
原创文章,作者:端木书台,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/271710.html