使用Selenium和XUL的Firefox Quantum中的驱动程序错误

时间:2017-11-21 11:18:26

标签: python selenium selenium-webdriver selenium-firefoxdriver firefox-quantum

版本:

  • Ubuntu 16.04
  • Mozilla Firefox 58.0
  • 硒3.7.0

示例代码:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from selenium import webdriver

profile = webdriver.FirefoxProfile()
profile.set_preference("browser.privatebrowsing.autostart", True)
driver = webdriver.Firefox(profile)

使用Python-Selenium的Firefox出错:

XML read error: entity not defined
Location: chrome://browser/content/browser.xul
Line number 1165, column 7:
      <menuitem class="pageActionContextMenuItem extensionUnpinned"
------^

注意: 如果您在Ubuntu 12中使用FIrefox Quantum,也会出现错误。

1 个答案:

答案 0 :(得分:0)

说明:Is selenium IDE an XUL add-on in Firefox?

解决方案,使用旧版本的Firefox 58:

sudo apt-get remove --purge firefox
sudo add-apt-repository ppa:ubuntu-mozilla-daily/firefox-aurora
sudo apt-get update
sudo apt-get install firefox=57.0+build4-0ubuntu0.16.04.5

感谢@DebanjanB