0

我是 Python 的新手,我正在尝试selenium用于网页浏览,但我得到以下信息 - 我该怎么做才能解决它?

from selenium import webdriver

Traceback (most recent call last):
  File "<pyshell#5>", line 1, in <module>
    from selenium import webdriver
  File "c:\apps\python25\lib\site-packages\selenium-2.35.0-py2.5.egg\selenium\__init__.py", line 16, in <module>
    from selenium import selenium
SyntaxError: future feature unicode_literals is not defined (selenium.py, line 17)
4

1 回答 1

2

您必须使用较新版本的 Python 才能使其工作。使用Python 2.7. Python 2.5不支持硒。这是一个关于此的问题:

http://code.google.com/p/selenium/issues/detail?id=1559

于 2013-09-17T11:09:01.017 回答