Skip to main content

Robocorp browser automation library

Project description

Robocorp browser library

The robocorp-browser library helps in automating browsers by providing convenient APIs to manage the lifecycle of playwright objects using robocorp-tasks.

The code below reflects the basic usage of the library:

from robocorp import browser
from robocorp.tasks import task
from robocorp import vault


@task
def browser_automate():
    # Configure may be used to set the basic robocorp.browser settings.
    # It must be called prior to calling APIs which create playwright objects.
    browser.configure(
        # Note: screenshot="only-on-failure" is actually the default.
        # If the browser_automate() function finishes with an exception it will
        # make a screenshot and embed it into the logs.
        screenshot="only-on-failure",
        # If headless is not passed, it'll show the browser screen only if a
        # debugger is attached.
        headless=True,
    )

    # browser.goto() may be used as a shortcut to get the current page and
    # go to some url (it may create the browser if still not created).
    browser.goto("https://<target-page.com>")

    login()


def login():
    # APIs in robocorp.browser return the same browser instance, which is
    # automatically closed when the task finishes.
    page = browser.page()

    # robocorp.vault is recommended for managing secrets.
    password = vault.get_secret("default-account")["password"]

    # Use the playwright Browser api as usual.
    page.fill('//input[@ng-reflect-name="password"]', password)
    page.click("input:text('Submit')")

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

robocorp_browser-1.0.1.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

robocorp_browser-1.0.1-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file robocorp_browser-1.0.1.tar.gz.

File metadata

  • Download URL: robocorp_browser-1.0.1.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1038-azure

File hashes

Hashes for robocorp_browser-1.0.1.tar.gz
Algorithm Hash digest
SHA256 79e75dc3f235b6847ed6d893b96faf764e4f7c46f0faf2b0d28092582f0fff0f
MD5 7c45af2f2acd7581946ef2a5cf50210f
BLAKE2b-256 aea499d18fe3827c6e00fbd448fe9a917b0438cf2b2dcaefa79d7ed5da2d2c8c

See more details on using hashes here.

Provenance

File details

Details for the file robocorp_browser-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: robocorp_browser-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1038-azure

File hashes

Hashes for robocorp_browser-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2b6f420199589170fca785ba4ca74cb793d6d8241a581e5cf452c01e2073bcd2
MD5 9a1aa82107020652684c5a8adad4b8a9
BLAKE2b-256 c7c17007cd44d0eb89b0c606eeba76a317b005fe862effb472c7b48e4c3f19ea

See more details on using hashes here.

Provenance

Supported by

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