Selenium Python中出错-无法创建webdriver

Selenium Python中出错-无法创建webdriver,python,selenium,python-2.7,selenium-webdriver,Python,Selenium,Python 2.7,Selenium Webdriver,我正在使用Selenium(Python)创建一个Web驱动程序。几小时前它还可以正常工作。但现在它给出了以下例外情况: Traceback (most recent call last): File "/local/data2/mwaqar/opt/Python-2.7.4/lib/python2.7/threading.py", line 810, in __bootstrap_inner self.run() File "/local/data2/mwaqar/opt/Py

我正在使用Selenium(Python)创建一个Web驱动程序。几小时前它还可以正常工作。但现在它给出了以下例外情况:

Traceback (most recent call last):
  File "/local/data2/mwaqar/opt/Python-2.7.4/lib/python2.7/threading.py", line 810, in __bootstrap_inner
    self.run()
  File "/local/data2/mwaqar/opt/Python-2.7.4/lib/python2.7/threading.py", line 763, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/cshome/mwaqar/AEK/AEK_extract_community.py", line 49, in extract_community
    driver = webdriver.Firefox()
  File "/local/data2/mwaqar/opt/Virtual-Python-2.7.4/lib/python2.7/site-packages/selenium-2.33.0-py2.7.egg/selenium/webdriver/firefox/webdriver.py", line 61, in __init__
    self.binary, timeout),
  File "/local/data2/mwaqar/opt/Virtual-Python-2.7.4/lib/python2.7/site-packages/selenium-2.33.0-py2.7.egg/selenium/webdriver/firefox/extension_connection.py", line 47, in __init__
    self.binary.launch_browser(self.profile)
  File "/local/data2/mwaqar/opt/Virtual-Python-2.7.4/lib/python2.7/site-packages/selenium-2.33.0-py2.7.egg/selenium/webdriver/firefox/firefox_binary.py", line 51, in launch_browser
    self._wait_until_connectable()
  File "/local/data2/mwaqar/opt/Virtual-Python-2.7.4/lib/python2.7/site-packages/selenium-2.33.0-py2.7.egg/selenium/webdriver/firefox/firefox_binary.py", line 95, in _wait_until_connectable
    self.profile.path, self._get_firefox_output()))
WebDriverException: Message: 'Can\'t load the profile. Profile Dir: /cshome/mwaqar/AEK/tmpgZ0n_J Firefox output: \n(Gecko:32421): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",\n*** LOG addons.xpi: startup\n*** LOG addons.xpi: checkForChanges\n*** LOG addons.xpi: No changes found\n*** LOG addons.xpi: Add-ons list is invalid, rebuilding\n*** LOG addons.xpi-utils: Opening database\n'
我不知道是什么原因造成的。有人能提供一些建议吗

更新:我使用的代码很简单

from pyvirtualdisplay import Display
from selenium import webdriver

display = Display(size=(800,600), visible=0)
display.start()

driver = webdriver.Firefox() # gives exception

我设法解决了这个问题。问题是,由于我已经多次执行该脚本,因此,
/tmp/
/var/tmp/
目录(名称为
tmp*
)中存在许多Firefox用户配置文件(对应于webdriver实例)。我一删除这些目录,问题就消失了。

尝试禁用/卸载clearlooks插件。我想这会伤害网络驱动程序,我想我甚至不使用Firefox。如果这是一个问题,那么几个小时前它是如何工作的呢?也许你应该粘贴代码来给出更好的答案。通过查看例外添加的代码,我假设您正在Firefox上运行。很简单。你的机器上没有安装firefox浏览器吗?