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

https://github.com/horberlan/automated-google-search

🤖 A simple Bot to access google and search for anything automated 🐍
https://github.com/horberlan/automated-google-search

bot selenium selenium-python-bot

Last synced: about 2 months ago
JSON representation

🤖 A simple Bot to access google and search for anything automated 🐍

Awesome Lists containing this project

README

        

# Selenium Python Bot Selenium Web Driver
![Selenium](https://img.shields.io/pypi/v/selenium?label=selenium&style=flat-square)

🤖 A simple Bot to access google and search for anything automated 🐍



* To install Selenium on Python3:


```terminal
$ pip3 install selenium
```
* Necessary imports:

```Python
from time import sleep
from selenium import webdriver
from selenium.webdriver.common.keys import Keys

```