[Solved] Webpage data extraction automation using python and selenium webdriver [closed]


All you need is python here and selenium here.

Windows 7 or another system:

To install selenium, extract tr.gz file, cd into the directory and then python setup.py install.

Or you could use pip like this:

pip install -U selenium


Specifically for linux, use

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

Installing on windows:

Download selenium from here and setuptools from here.
Extract them anywhere you chose, in this case I extracted them inc:\Users\User\Desktop\...

Cd into the directory and then do python setup.py install if it says it cannot find python try c:\Python27\python.exe setup.py install to first install setup tools:
enter image description here

Next cd into the seleneium directory and do python setup.py install:
enter image description here

If everything goes well there should not be any errors and you are ready to use selenium.
enter image description here

25

solved Webpage data extraction automation using python and selenium webdriver [closed]