https://github.com/coskundeniz/selenium-examples
Selenium browser automation examples with Python
https://github.com/coskundeniz/selenium-examples
browser-automation python selenium selenium-webdriver webdriver
Last synced: 10 days ago
JSON representation
Selenium browser automation examples with Python
- Host: GitHub
- URL: https://github.com/coskundeniz/selenium-examples
- Owner: coskundeniz
- License: gpl-3.0
- Created: 2020-12-12T10:26:20.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-05T12:40:09.000Z (about 3 years ago)
- Last Synced: 2025-04-14T05:57:07.501Z (10 days ago)
- Topics: browser-automation, python, selenium, selenium-webdriver, webdriver
- Language: Python
- Homepage:
- Size: 54.7 KB
- Stars: 4
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
selenium-examples
=================Selenium browser automation examples with Python for [Medium posts](https://codenineeight.medium.com/).
Setup & Run
-----------```sh
python -m venv env
source env/bin/activate# with pip
pip install -r requirements.txt# with pipenv
pipenv install
``````
python example_file.py
```