无法加载Chrome默认个人资料

时间:2016-05-10 15:13:14

标签: python google-chrome selenium selenium-chromedriver

我有以下Python脚本:

from selenium import webdriver
import time

def main():
    chrome_options = webdriver.ChromeOptions();
    chrome_options.add_argument("user-data-dir=/Users/octavian/Library/Application Support/Google/Chrome/Default");
    driver = webdriver.Chrome(chrome_options=chrome_options)
    driver.get("https://www.facebook.com/")
    time.sleep(1000)


main()

我正在尝试加载我的Facebook个人资料。但是,打开的页面没有我的配置文件(我没有登录),这意味着未加载浏览器状态。

但是,我的Chrome个人资料存储在此文件中:

/Users/octavian/Library/Application Support/Google/Chrome/Default

为什么Selenium看不到个人资料?

0 个答案:

没有答案