PHP前端开发

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

百变鹏仔 4天前 #Python
文章标签 如何使用

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

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

c:usersxxppdataoamingmozillairefoxprofilesg44btdgo.<default>

答案

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

立即学习“Python免费学习笔记(深入)”;

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