2

有任何想法吗?

In [1]: from selenium.firefox.webdriver import WebDriver

In [2]: d=WebDriver()
---------------------------------------------------------------------------
Exception                                 Traceback (most recent call last)

/usr/local/selenium-read-only/<ipython console> in <module>()

/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/selenium-2.0_dev-py2.6.egg/selenium/firefox/webdriver.pyc in __init__(self, profile, timeout)
     48             profile = FirefoxProfile(name=profile)
     49         if not profile:
---> 50             profile = FirefoxProfile()
     51         self.browser.launch_browser(profile)
     52         RemoteWebDriver.__init__(self,

/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/selenium-2.0_dev-py2.6.egg/selenium/firefox/firefox_profile.pyc in __init__(self, name, port, template_profile, extension_path)
     72 
     73         if name == ANONYMOUS_PROFILE_NAME:
---> 74             self._create_anonymous_profile(template_profile)
     75             self._refresh_ini()
     76         else:

/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/selenium-2.0_dev-py2.6.egg/selenium/firefox/firefox_profile.pyc in _create_anonymous_profile(self, template_profile)
     82             self._copy_profile_source(template_profile)
     83         self._update_user_preference()
---> 84         self.add_extension(extension_zip_path=self.extension_path)
     85         self._launch_in_silent()
     86 

/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/selenium-2.0_dev-py2.6.egg/selenium/firefox/firefox_profile.pyc in add_extension(self, force_create, extension_zip_path)
    152                 not os.path.exists(extension_source_path)):
    153                 raise Exception(
--> 154                     "No extension found at %s" % extension_source_path)
    155 
    156             logging.debug("extension_source_path : %s" % extension_source_path)

Exception: No extension found at None
4

3 回答 3

1

好的,我已经通过手动创建webdriver-extension.zip文件并将其复制到selenium/firefox我的站点包目录中的文件夹来克服这个异常。

以下所有内容均假设您已从http://selenium.googlecode.com/svn/trunk/获得源代码副本(使用 subversion/svn)

如果您安装了 Ruby,您可能能够运行rake firefox(即 Ruby make),这是您应该构建 zip 文件的方式。由于我没有安装 ruby​​,我只是查看/Rakefile并弄清楚了 zip 中应该包含的内容。

基本上你只需要添加/firefox/src/extension/文件夹中的所有内容。在 Windows 上,我也添加了/firefox/prebuilt/Win32/Release/webdriver-firefox.dll它,但我不确定我是否需要。(在 linux 上,您可能需要添加适当的 .so 文件)。

于 2010-04-21T22:22:16.863 回答
1

好的,我通过发现我通过 macports 安装的 virtualenv 是“丢失”解决了这个问题,

sudo ln -s `which virtualenv-2.6` /opt/local/bin/virtualenv 

然后运行rake firefox,最后rake firefox_xpi......

于 2010-04-22T12:00:08.440 回答
0

下面的代码在做什么?

from selenium.firefox.webdriver import WebDriver
d = WebDriver()

正确的 webdriver 导入和 firefox 实例化如下所示:

from selenium import webdriver
d = webdriver.Firefox()
于 2012-10-03T13:45:20.007 回答