我有以下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看不到个人资料?