您好,登錄后才能下訂單哦!
package test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
import org.openqa.selenium.firefox.internal.ProfilesIni;
import org.testng.annotations.Test;
public class profile {
@Test
public void test() throws InterruptedException{
//自定義profile,ie不支持,firefox和chrome支持
//profile模式,包含隱私網站,cookie 插件
/*System.setProperty("webdriver.firefox.bin", "D:/Firefox/firefox.exe");
ProfilesIni allprofiles = new ProfilesIni();
FirefoxProfile pro = allprofiles.getProfile("default");
WebDriver dr = new FirefoxDriver(pro);
dr.manage().window().maximize();
dr.get("http://www.baidu.com");*/
/*System.setProperty("webdriver.chrome.driver", "D:/01 Learn WebDriver/chromedriver.exe");
WebDriver dr = new ChromeDriver();
dr.manage().window().maximize();
dr.get("http://www.baidu.com");*/
//把瀏覽器關掉,再執行以下腳本
System.setProperty("webdriver.chrome.driver", "D:/01 Learn WebDriver/chromedriver.exe");
ChromeOptions options = new ChromeOptions();
options.addArguments("user-data-dir=C:/Users/fengchuanyun/AppData/Local/Google/Chrome/User Data");
WebDriver dr = new ChromeDriver(options);
dr.manage().window().maximize();
dr.get("http://www.baidu.com");
Thread.sleep(3000);
dr.quit();
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。