码迷,mamicode.com
首页 > 其他好文 > 详细

Selenium 加载Chrome/Firefox浏览器配置文件

时间:2018-05-25 13:43:00      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:mini   star   地址   failed   bubuko   路径   inf   查看   coding   

Selenium启动浏览器时,默认是打开一个新用户,不会加载原有的配置以及插件。但有些时候我们可能需要加载默认配置。

一、Chrome浏览器


1、在Chrome浏览器的地址栏输入:chrome://version/,查看个人资料路径并复制路径

技术分享图片

2、加载配置数据

  • 加载的用户配置路径后面的Default不需要,不然还是打开一个新用户。
  • 在执行脚本时,确保没有谷歌浏览器打开,不然会报selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: crashed

技术分享图片

代码:

# coding = utf-8
from selenium import webdriver

# 个人资料路径
user_data_dir = r--user-data-dir=C:\Users\Administrator\AppData\Local\Google\Chrome\User Data
# 加载配置数据
option = webdriver.ChromeOptions()
option.add_argument(user_data_dir)
# 启动浏览器配置
driver = webdriver.Chrome(chrome_options=option, executable_path=rD:\coship\Test_Framework\drivers\chromedriver.exe)
driver.get(rhttps://www.cnblogs.com/)

二、Firefox浏览器


 

1、打开Firefox浏览器,进入右上角的帮助>故障排除信息,查看浏览器配置文件路径并复制此路径

技术分享图片

技术分享图片

技术分享图片

2、加载配置数据

技术分享图片

代码:

# coding = utf-8
from selenium import webdriver

# 配置文件路径
profile_path = rC:\Users\Administrator\AppData\Roaming\Mozilla\Firefox\Profiles\hjs10ncm.default
# 加载配置数据
profile = webdriver.FirefoxProfile(profile_path)
# 启动浏览器配置
driver = webdriver.Firefox(firefox_profile=profile, executable_path=rD:\coship\Test_Framework\drivers\geckodriver.exe)
driver.get(rhttps://www.cnblogs.com/)
driver.quit()

 

Selenium 加载Chrome/Firefox浏览器配置文件

标签:mini   star   地址   failed   bubuko   路径   inf   查看   coding   

原文地址:https://www.cnblogs.com/eastonliu/p/9083982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!