1 个回答

可以操控一个已经打开的浏览器。

  1. 启动浏览器

    # mac
    ➜  ~ /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
    
    # win
    chrome.exe --remote-debugging-port=9222
  2. 执行脚本

    from selenium import webdriver
    from selenium.webdriver.chrome.options import Options
    
    options = Options()
    options.add_experimental_option("debuggerAddress", "127.0.0.1:9222")
    driver = webdriver.Chrome(options=options)

这样,这个浏览器就是你之前一致使用的样子了。


已参与了 SegmentFault 思否社区 10 周年「问答」打卡 ,欢迎正在阅读的你也加入。

推荐问题
宣传栏