https://github.com/michaelinzo/automated-web-scraping-with-selenium-in-python
This code demonstrates the use of the Selenium library in Python to automate the process of searching for specific information within a web application. The code navigates to the specified web application, enters a keyword into the search bar, and retrieves and prints the results of the search.
https://github.com/michaelinzo/automated-web-scraping-with-selenium-in-python
automated automation firefox python python3 selenium web-scraping webdriver
Last synced: about 2 months ago
JSON representation
This code demonstrates the use of the Selenium library in Python to automate the process of searching for specific information within a web application. The code navigates to the specified web application, enters a keyword into the search bar, and retrieves and prints the results of the search.
- Host: GitHub
- URL: https://github.com/michaelinzo/automated-web-scraping-with-selenium-in-python
- Owner: MiChaelinzo
- License: apache-2.0
- Created: 2023-02-07T11:32:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-15T09:18:09.000Z (over 3 years ago)
- Last Synced: 2025-06-03T23:29:47.465Z (about 1 year ago)
- Topics: automated, automation, firefox, python, python3, selenium, web-scraping, webdriver
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Automated-Web-Scraping-with-Selenium-in-Python
This code demonstrates the use of the Selenium library in Python to automate the process of searching for specific information within a web application. The code navigates to the specified web application, enters a keyword into the search bar, and retrieves and prints the results of the search. The code also includes a wait time to allow the results to fully load and the ability to load and search the next page of results. The code can be modified to fit the specific structure of the target web application and expanded to perform additional actions as needed.
#### How to use
- 1.) `Git clone` this repository `https://github.com/MiChaelinzo/Automated-Web-Scraping-with-Selenium-in-Python.git`
- 2.) `pip3 install selenium`
- 3.) Edit the web application you want to use in the `AutomatedWebScraping.py line 9`
- 4.) Edit the keyword you want to search in the `AutomatedWebScraping.py line 15`
- 5.) `python3 AutomatedWebScraping.py` to run the code
- 6.) Enjoy using Automated-Web-Scraping-with-Selenium-in-Python
