正常打开浏览器登录以后就不需要滑块答题了,但是 webdriver 启动的 firefox 每次登录都要滑块答题
profileDir = r"C:\Users\vmware\AppData\Roaming\Mozilla\Firefox\Profiles\jtuws0sz.default-release"
#指定 firefox 浏览器本机默认的 Profiles 目录可以实现记录登录结果,免滑块答题
webdriver.FirefoxProfile(profileDir)
#但是配置自定义的 profiles 目录却不能保存登录结果,每次都需要滑块答题
profileDir = "c:\FirefoxPortable\Data\az60if6f.fifa"
webdriver.FirefoxProfile(profileDir)
请教 slenium 使用 firefox 正确指定自定义 profile 目录的方式.