您好,登錄后才能下訂單哦!
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模式,包含隱私網(wǎng)站,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");*/
//把瀏覽器關掉,再執(zhí)行以下腳本
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();
}
}
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。