Skip to main content

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

python_selenium_google_form-0.7.1.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_selenium_google_form-0.7.1-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file python_selenium_google_form-0.7.1.tar.gz.

File metadata

File hashes

Hashes for python_selenium_google_form-0.7.1.tar.gz
Algorithm Hash digest
SHA256 af357580b343d496b85ffdbe00dd3cd2ba8ae14bc223508ca26ee71cabb15c63
MD5 9c468eada0e534be04b54e8219e20ed9
BLAKE2b-256 a9f03d138f6ada9f15938b10147990ab308681609eff7f7e56a199de9d7f1d39

See more details on using hashes here.

File details

Details for the file python_selenium_google_form-0.7.1-py3-none-any.whl.

File metadata

File hashes

Hashes for python_selenium_google_form-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 74da33ee2c56855234fc3a0f7e65623604127dac479327b44b19a3ff0353d2c3
MD5 1321fca55047c2fdfd3f79f68c8d670f
BLAKE2b-256 16176c3b802c4652798b95aef018dc7a224d14cdf67a1ba68787c795ee83971e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page