本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

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

网络教程 app 1℃

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

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

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

c:usersxxppdataoamingmozillairefoxprofilesg44btdgo.<default>

答案

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

from selenium import webdriverdriver = webdriver.Firefox()profile_dir = driver.firefox_profile.pathprint(profile_dir)

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

转载请注明:范的资源库 » 如何使用Selenium在Python中获取Firefox配置文件目录?

喜欢 (0)