我需要为我正在使用的Firefox配置文件放置Firefox插件路径。

profile = webdriver.FirefoxProfile(plugin_path)
profile.set_preference("webdriver.load.strategy", "fast")

如何在Linux中找到Firefox插件路径,以便在python脚本中传递插件路径

最佳答案

我不知道你为什么要这样加载插件到FirefoxProfile?文档有一个不同的例子:

File file = new File("firebug-1.8.1.xpi");
FirefoxProfile firefoxProfile = new FirefoxProfile();
firefoxProfile.addExtension(file);
firefoxProfile.setPreference("extensions.firebug.currentVersion", "1.8.1"); // Avoid startup screen

WebDriver driver = new FirefoxDriver(firefoxProfile);

无论如何,Firefox的插件位于~/.mozilla/firefox/MY_PROFILE/extensions

10-06 14:57