May I know to have it work properly what are the software i need to install in my PC?
UPDATE
Error i was getting is this:
Getting this error when running pip install -U selenium. Mid way through the script, it gets the following 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
Thanks,
All you need is python here and selenium here.
Windows 7 or another system:
To install
selenium, extracttr.gzfile,cdinto the directory and thenpython setup.py install.Or you could use
piplike this:pip install -U seleniumSpecifically for linux, use
Installing on windows:
Download selenium from here and setuptools from here.
Extract them anywhere you chose, in this case I extracted them in
c:\Users\User\Desktop\...Cd into the directory and then do

python setup.py installif it says it cannot find python tryc:\Python27\python.exe setup.py installto first install setup tools:Next cd into the seleneium directory and do

python setup.py install:If everything goes well there should not be any errors and you are ready to use selenium.
