Automate Google Forms
Project description
Introduction
The Python Selenium Google Form package is used to automate the completion of Google Forms. This package uses the Google Chrome browser.
| GitHub: | https://github.com/bot-anica/python_selenium_google_form |
|---|---|
| PyPI: | https://pypi.org/project/python-selenium-google-form/ |
Installing
If you have pip on your system, you can simply install or upgrade the Python bindings:
pip install python-selenium-google-form
Alternately, you can download the source distribution from PyPI https://pypi.org/project/python-selenium-google-form/#files, unarchive it, and run:
python setup.py install
Using
To use this package you should create Selenium driver and navigate to target Google Form. You can do it like me. I have 2 useful functions to simplify it:
import undetected_chromedriver as uc
def get_driver(options: list) -> uc.Chrome:
"""
Creating driver with settings
:param options: uc.ChromeOptions
:return: uc.Chrome
"""
if options:
driver_options: uc.ChromeOptions = uc.ChromeOptions()
for option in options:
driver_options.add_argument(option)
return uc.Chrome(options=driver_options)
else:
return uc.Chrome()
def get_page(url: str, driver: uc.Chrome) -> None:
"""
Loading page
:param url: str
:param driver: uc.Chrome
:return: None
"""
driver.get(url)
Using these functions and current package you can automate the completion of Google Forms. For example:
from time import sleep
from typing import List
from python_selenium_google_form import process_form_fields_with_hotkeys, FieldConfig, FieldType
from selenium_methods import get_driver, get_page
WEB_DRIVER_OPTIONS = ["--start-maximized", "--disable-popup-blocking"]
def main() -> None:
driver = get_driver(WEB_DRIVER_OPTIONS)
driver.implicitly_wait(10)
get_page(
"https://docs.google.com/forms/d/e/1FAIpQLSfP0lcoj1XrdXtKCSwSkCaPEgGaGkY267U6yLCH3WkIz-58vg/viewform",
driver)
fields_list: List[FieldConfig] = [
FieldConfig("first_name", FieldType.TEXT, "John"),
FieldConfig("last_name", FieldType.TEXT, "Doe"),
FieldConfig("job_title", FieldType.TEXT, "Software Developer"),
FieldConfig("education_level", FieldType.RADIO, [1, 0, 0]), # 1 means that field is selected, 0 - not selected
FieldConfig("favourite_subjects", FieldType.CHECKBOX, [0, 0, 1, 1, 0]), # 1 means that field is selected, 0 - not selected
FieldConfig("experience", FieldType.SELECT, [0, 0, 1, 0]), # 1 means that field is selected, 0 - not selected
FieldConfig("date", FieldType.DATE, "01-09-2022"),
]
process_form_fields_with_hotkeys(fields_list, driver)
sleep(10)
main()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python_selenium_google_form-0.7.2.tar.gz.
File metadata
- Download URL: python_selenium_google_form-0.7.2.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6935d055aa3e30e305d2dd27d98f48993815f29e36c6825ae9e0f9d6b88e02a
|
|
| MD5 |
a32529901b205cf82d7a3565b61dc423
|
|
| BLAKE2b-256 |
9cfae807665acf83de7dd67cdf0d5b36ef64aa86119d251efae2c320f7d07c53
|
File details
Details for the file python_selenium_google_form-0.7.2-py3-none-any.whl.
File metadata
- Download URL: python_selenium_google_form-0.7.2-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84ca162e8456c5d55731fcf8d8123b44caa5b687968e9e0dbb166dd195881be4
|
|
| MD5 |
44f3da2263e5eef63bad2613dd6c8ae0
|
|
| BLAKE2b-256 |
01363e136bf012cfe1bc000cf6891596096ca51619e574805150f052bc400347
|