Search code examples
pythonseleniumwebdriver

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=


Solution

  • Do like this:

    pip uninstall selenium

    And:

    pip install selenium==2.33