Se(4)---自定义profile

发布时间:2020-07-08 14:06:32 作者:爱与梦想
来源:网络 阅读:409

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

}

}


推荐阅读:
  1. Java SE实现多人聊天室功能
  2. Python中的装饰器是什么以及运作方法介绍

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

se --

上一篇:javascript基础修炼——一道十面埋伏的原型链面试题

下一篇:C/S和B/S分别是什么

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》