如何在Selenium中使用我的Firefox Cookie?

时间:2014-11-30 13:22:33

标签: selenium python-3.x

我目前正在设置一个Python脚本来为我注册一个网站,但每次启动时我都必须自己登录,并且不会保存用户名/密码。

问题:是否可以在脚本中使用我的Firefox配置文件中的cookie?可以在Chrome上完成吗?

1 个答案:

答案 0 :(得分:-1)

您是否尝试过以下操作:

profile = webdriver.FirefoxProfile()
profile.set_preference("general.useragent.override", "some UA string")
driver = webdriver.Firefox(profile)

访问“Cookies”了解更多详情和示例!

请告诉我这是否有帮助!