Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get previous versions of Python Selenium Webdriver

Is there a way to uninstall Selenium Webdriver in linux? I want to reinstall an older version ie 2.33 which worked for me. Can you please let me know the syntax for installing specific version of selenium in linux?

In Selenium website previous release of java are present. Where can I previous versions of Python?

https://code.google.com/p/selenium/downloads/list?can=1&q=

like image 668
Venu Avatar asked Dec 04 '22 06:12

Venu


1 Answers

Do like this:

pip uninstall selenium

And:

pip install selenium==2.33

like image 147
pynovice Avatar answered Dec 08 '22 06:12

pynovice