使用python和selenium webdriver的网页数据提取自动化

时间:2012-12-14 21:03:02

标签: python selenium

我是否知道要让它正常工作我需要在我的电脑上安装什么软件?

更新

我得到的错误是:

运行pip install -U selenium时出现此错误。通过脚本的中途,它获得以下SyntaxError:

    Traceback (most recent call last):
      File "<string>", line 14, in <module>
      File "C:\Python32\Scripts\build\rdflib\setup.py", line 6, in <module>
        from rdflib import __version__
      File "rdflib\__init__.py", line 64, in <module>
        from rdflib.term import URIRef, BNode, Literal, Variable
      File "rdflib\term.py", line 367
        except TypeError, te:
                        ^
    SyntaxError: invalid syntax
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 14, in <module>

  File "C:\Python32\Scripts\build\rdflib\setup.py", line 6, in <module>

    from rdflib import __version__

  File "rdflib\__init__.py", line 64, in <module>

    from rdflib.term import URIRef, BNode, Literal, Variable

  File "rdflib\term.py", line 367

    except TypeError, te:

                    ^

SyntaxError: invalid syntax

----------------------------------------
Command python setup.py egg_info failed with error code 1

谢谢,

1 个答案:

答案 0 :(得分:1)

您需要的只是python here和selenium here

Windows 7或其他系统:

要安装selenium,请将tr.gz文件cd解压缩到目录中,然后python setup.py install

或者您可以像这样使用pip

pip install -U selenium


特别是对于linux,请使用

$ sudo apt-get install python-pip
$ sudo pip install selenium

在Windows上安装:

here下载selenium,从here下载setuptools。 在您选择的任何地方提取它们,在这种情况下,我在c:\Users\User\Desktop\..中提取它们。

cd进入目录然后执行python setup.py install如果它说找不到python尝试c:\Python27\python.exe setup.py install来首先安装设置工具: enter image description here

接下来进入seleneium目录并执行python setup.py installenter image description here

如果一切顺利,应该没有任何错误,你准备好使用硒。 enter image description here