gpt4 book ai didi

python - 如何在python中保存Firefox webdriver session

转载 作者:行者123 更新时间:2023-12-03 21:29:22 25 4
gpt4 key购买 nike

为了保存 chromedriver session ,我使用了这段代码:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

options = Options()
options.add_argument('user-data-dir= path to where to save session')
driver = webdriver.Chrome(executable_path='path to chromedriver.exe', chrome_options=options)

我试图用 Firefox 做同样的事情,但它似乎不起作用:
from selenium import webdriver
from selenium.webdriver.firefox.options import Options

options = Options()
options.add_argument('user-data-dir= path to where to save session')
driver = webdriver.Firefox(executable_path='path to geckodriver.exe', firefox_options=options)

这是正确的方法还是我错过了什么?

最佳答案

以下是创建新配置文件并使用现有配置文件启动 Firefox 的手动过程:

  • 要创建新配置文件,请执行命令:firefox.exe -CreateProfile JoelUser
  • 要在另一个目录中创建新配置文件,请执行命令:firefox.exe -CreateProfile "JoelUser c:\internet\joelusers-moz-profile"
  • 要使用新配置文件启动 Firefox,请执行命令:firefox.exe -P "Joel User"

  • 现在,为了以编程方式实现相同的目标,我想出了这一步。 1 或 2 可以使用子流程和步骤号执行。 3 可以通过以下方式实现 https://stackoverflow.com/a/54065166/6278432引用:
  • firefox 错误 - 无法使用自定义配置文件创建新 session :https://github.com/mozilla/geckodriver/issues/1058
    https://bugzilla.mozilla.org/show_bug.cgi?id=1421766
  • Firefox 命令行参数 - https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options#user_profile
  • 子进程 API 文档 - https://docs.python.org/3/library/subprocess.html
  • 关于python - 如何在python中保存Firefox webdriver session ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45303059/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com