溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Se(4)---自定義profile

發(fā)布時間:2020-07-08 14:06:32 來源:網(wǎng)絡 閱讀:404 作者:愛與夢想 欄目:軟件技術

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();

}

}


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

se --
AI