如何使用 Selenium 在 Python 中获取 Firefox 配置文件目录?

如何使用 selenium 在 python 中获取 firefox 配置文件目录?

python 中使用 selenium 获取 firefox 配置文件目录

selenium webdriver 允许我们与浏览器进行交互,包括在 firefox 中。firefox 存储它的配置文件,其中包含书签、扩展程序和各种设置,在以下位置:

c:usersxxppdataoamingmozillairefoxprofilesg44btdgo.<default></default>

答案

一位用户建议使用 firefox 配置文件时不要每次都安装该浏览器。要获取配置文件的目录,可以在 python 中使用 selenium webdriver

from selenium import webdriver

driver = webdriver.Firefox()
profile_dir = driver.firefox_profile.path

print(profile_dir)

以上就是如何使用 Selenium 在 Python 中获取 Firefox 配置文件目录?的详细内容,更多请关注其它相关文章!