An open API service indexing awesome lists of open source software.

https://github.com/joshuamhtsang/selenium_example

My Selenium playground.
https://github.com/joshuamhtsang/selenium_example

beautifulsoup4 python3 selenium selenium-webdriver

Last synced: about 1 month ago
JSON representation

My Selenium playground.

Awesome Lists containing this project

README

          

# selenium_example
My Selenium playground.

# Setup Instructions

1. Install selenium with pip3.

$ pip3 install selenium

2. Add chromedriver to your path, you should download the
correct version from here:
https://sites.google.com/a/chromium.org/chromedriver/downloads

You can check the version of your Chrome using 'About Google Chrome'.

$ unzip chromedriver_linux64.zip
$ sudo mv chromedriver /usr/bin/chromedriver
$ sudo chown root:root /usr/bin/chromedriver
$ sudo chmod +x /usr/bin/chromedriver

3. You can now run the example:

$ python3 try_selenium.py