在python selenium中加载Firefox的配置文件

时间:2015-12-16 18:49:17

标签: python ruby firefox selenium watir

在ruby中,我可以像这样加载某个FireFox配置文件:

profile = Selenium::WebDriver::Firefox::Profile.from_name 'MyProfile'
b = Watir::Browser.new :firefox, :profile => profile
b.goto 'http://192.168.0.1'

我怎样才能在Python中这样做?据我所知,在Python中它不受支持http://selenium-python.readthedocs.org/api.html

2 个答案:

答案 0 :(得分:3)

在Python中,您可以按路径加载特定的配置文件

from selenium import webdriver

profile = webdriver.FirefoxProfile(profile_directory="path/to/profile")
driver = webdriver.Firefox(firefox_profile=profile)

答案 1 :(得分:0)

只需输入个人资料的名称即可。它会自动从默认位置加载。