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.
- Host: GitHub
- URL: https://github.com/joshuamhtsang/selenium_example
- Owner: joshuamhtsang
- Created: 2020-06-03T21:45:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-07T23:46:09.000Z (almost 6 years ago)
- Last Synced: 2025-09-08T08:43:45.118Z (10 months ago)
- Topics: beautifulsoup4, python3, selenium, selenium-webdriver
- Language: Python
- Size: 309 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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