python - "Can' t load the profile"错误发生在 Python3.5 和 FF48 的 Selenium WebDriver

标签 python selenium selenium-webdriver

我正在尝试将 Selenium 与 Python 结合使用。
因此,我编写了以下代码并在工作目录 /Users/ykt68/seleniumwork 中保存为名为 test.py 的文件。

[ykt68@macbp15 seleniumwork]$ pwd
/Users/ykt68/seleniumwork
[ykt68@macbp15 seleniumwork]$ cat -n test.py
     1  #! /usr/bin/env python
     2  # -*- encoding: utf-8 -*-
     3  
     4  from selenium import webdriver
     5  from selenium.webdriver.common.keys import Keys
     6  
     7  driver = webdriver.Firefox()
     8  driver.get("http://www.python.org")
     9  assert "Python" in driver.title
    10  elem = driver.find_element_by_name("q")
    11  elem.clear()
    12  elem.send_keys("pycon")
    13  elem.send_keys(Keys.RETURN)
    14  assert "No results found." not in driver.page_source
    15  driver.close()
[ykt68@macbp15 seleniumwork]$

以上代码与 2.1 Simple Usage 相同在 Selenium with Python 的文件中.

当我为上面的 test.py 运行 python 命令时,

  • FireFox 浏览器启动并打开一个空白选项卡。
  • 大约 30 秒后,将显示以下错误消息并关闭 FireFox 窗口。
[ykt68@macbp15 seleniumwork]$ python test.py 
Traceback (most recent call last):
  File "test.py", line 7, in <module>
    driver = webdriver.Firefox()
  File "/Users/ykt68/.pyenv/versions/seleniumwork/lib/python3.5/site-packages/selenium/webdriver/firefox/webdriver.py", line 80, in __init__
    self.binary, timeout)
  File "/Users/ykt68/.pyenv/versions/seleniumwork/lib/python3.5/site-packages/selenium/webdriver/firefox/extension_connection.py", line 52, in    __init__
    self.binary.launch_browser(self.profile, timeout=timeout)
  File "/Users/ykt68/.pyenv/versions/seleniumwork/lib/python3.5/site-packages/selenium/webdriver/firefox/firefox_binary.py", line 68, in launch_browser
    self._wait_until_connectable(timeout=timeout)
  File "/Users/ykt68/.pyenv/versions/seleniumwork/lib/python3.5/site-packages/selenium/webdriver/firefox/firefox_binary.py", line 108, in _wait_until_connectable
    % (self.profile.path))
selenium.common.exceptions.WebDriverException: Message: Can't load the profile. Profile Dir: /var/folders/86/55p1gj4j4xz2nw9g5q224bk40000gn/T/tmpf0uolidn If you specified a log_file in the FirefoxBinary constructor, check it for details.

[ykt68@macbp15 seleniumwork]$

请告诉我为什么会出现此错误以及如何解决问题或列出一些我应该引用的帖子或文档。

此外,

  1. 环境:
    • 操作系统:Apple OS X 10.11.6 版
    • Python 版本:3.5.2
    • FireFox 版本:48.0.2
    • Selenium 版本:2.53.6
[ykt68@macbp15 seleniumwork]$ python -V
Python 3.5.2
[ykt68@macbp15 seleniumwork]$ /Applications/Firefox.app/Contents/MacOS/firefox -v
Mozilla Firefox 48.0.2
[ykt68@macbp15 seleniumwork]$ /Applications/Firefox.app/Contents/MacOS/firefox-bin -v
Mozilla Firefox 48.0.2
[ykt68@macbp15 seleniumwork]$ pip list
pip (8.1.2)
selenium (2.53.6)
setuptools (20.10.1)
[ykt68@macbp15 seleniumwork]$
  1. 我推荐了类似的帖子 Selenium: FirefoxProfile exception Can't load the profile .所以我尝试了
pip install -U selenium

但上面报错信息的情况不变。

最好的问候。

最佳答案

据我了解并得出结论,您可以保留最新的 selenium 软件包版本,但您必须将 Firefox 降级到 47(47.0.1 是来自47分行)。

关于python - "Can' t load the profile"错误发生在 Python3.5 和 FF48 的 Selenium WebDriver,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39435532/

相关文章:

python - 在一个句子而不是一个词中找到一个词(python)

Python,从字典创建一个新变量?不像看起来那么简单?

python - 为什么我的代码不打印产品链接?

java - 通过 Selenium WebDriver 接受 "Sharing Location"浏览器弹出窗口

python - Selenium 获取新窗口的 session ID - Python

python - 无法使用 python 和 beautifulsoup 抓取网页中的某些 href

python - Deeplab v3+ 的可视化输出存在问题

Python Selenium 网络驱动程序 : Does not scroll down the page if browser is minimised

java - 使用 Selenium webdriver 获取 <p> 内容 - Java

java - 如何使用带有 Java 的 Selenium WebDriver 单击按钮?