1. 程式人生 > >java+selenium3學習之一啟動firefox瀏覽器

java+selenium3學習之一啟動firefox瀏覽器

pac cit program property lesson time oid string .com

package ceshi.com.lessons;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class LuanchFirefox {


public static void main(String[] args) {
System.setProperty ( "webdriver.firefox.bin" , "D:/Program Files (x86)/Mozilla Firefox/firefox.exe" );
System.setProperty("webdriver.gecko.driver", ".\\Tools\\geckodriver.exe");
WebDriver dr=new FirefoxDriver();
dr.manage().window().maximize();
dr.manage().timeouts().implicitlyWait(8, TimeUnit.SECONDS);
dr.get("http://www.baidu.com");
System.out.println("當前打開頁面的標題是:" + dr.getTitle());
dr.quit();
}

}

java+selenium3學習之一啟動firefox瀏覽器