我知道以前有人问过类似的问题,但我已经尝试了很多次,但它仍然对我不起作用。
我在 Firefox 中只有一个默认配置文件(称为 c1r3g2wi.default),没有其他配置文件。当我使用 selenium webdriver 启动它时,我希望我的 Firefox 浏览器以这个配置文件开始。我如何在 Python 中做到这一点?
我这样做了:
fp = webdriver.FirefoxProfile('C:\Users\admin\AppData\Roaming\Mozilla\Firefox\Profiles\c1r3g2wi.default')
browser = webdriver.Firefox(fp)
但我得到一个错误:
WindowsError: [Error 123] The filename, directory name, or volume label syntax is incorrect:
'C:\\Users\x07dmin\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\c1r3g2wi.default/*.*'
非常感谢您的帮助或正确方向的指示。