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-2.0.0.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

robocorp_browser-2.0.0-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: robocorp_browser-2.0.0.tar.gz
  • Upload date:
  • Size: 6.4 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-2.0.0.tar.gz
Algorithm Hash digest
SHA256 ffc67d924b298342efe08a284e9a389dd193c799cfbceb7f13596c0b79cb3d85
MD5 4c98632ad9566814a724dc99027849c6
BLAKE2b-256 bf0098f56a16f94ea5f0abfe62fa250c624c44c74c4c16af621dcec05af5f2da

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: robocorp_browser-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 8.2 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-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e01f51942608e88e390ffbd9114d9ba74f127766e157e606ceb733b9765b4d05
MD5 b8d29ef7109f1df1af79a2d81c468496
BLAKE2b-256 9cfaf1938c60188673a117809b1c69819ff256a9c76cc53bb09b682631a8690f

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