Skip to main content

Use UI5 selectors with Playwright

Project description

playwright-ui5-select

PyPI - Version

A mirror of the playwright-ui5 custom selector engine, to streamline its use in python.

This package:

  • mirrors the relevant distribution files css.js and xpath.js
  • reads file contents and exports it in a manner can be passed straight into the playwright api
  • also provides the raw data if needed

Installation

uv:

uv add playwright-ui5-select

pip:

pip install playwright-ui5-select

Usage

Given a Playwright instance, register one or both selector engines with .selectors.register().

from playwright_ui5_select import css, xpath

# name can be changed here from "ui5_css" to whatever you like
playwright.selectors.register("ui5_css", css)
playwright.selectors.register("ui5_xpath", xpath)

You can use the fixture supplied by playwright-python to register your selectors with the session-scoped Playwright instance:

# in conftest.py

@fixture(scope="session", autouse=True)
def _(playwright: Playwright):
    playwright.selectors.register("ui5_css", css)

The registered selector will now be available.

def test_basic(page: Page):
    page.goto("https://ui5.sap.com")
    page.click("ui5_css=sap.m.Button[text='Get Started with UI5']")

See the full api here.

Other uses

The package also exports *_raw variables for you to consume as you see fit:

from playwright_ui5_select import css_raw, xpath_raw

print(css_raw)
print(xpath_raw)

These do not include the extra IIFE code that returns the default exports as an expression.

You can also access the raw files directly with importlib.resources at import/ui5:

from importlib.resources import files

import playwright_ui5_select

data = files(playwright_ui5_select).joinpath("import").joinpath("ui5")

csspath = data.joinpath("css.js")

print("csspath", csspath)

print("css", csspath.read_text())

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

playwright_ui5_select-0.0.16.tar.gz (322.3 kB view details)

Uploaded Source

Built Distribution

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

playwright_ui5_select-0.0.16-py3-none-any.whl (294.4 kB view details)

Uploaded Python 3

File details

Details for the file playwright_ui5_select-0.0.16.tar.gz.

File metadata

File hashes

Hashes for playwright_ui5_select-0.0.16.tar.gz
Algorithm Hash digest
SHA256 697271b05a3c721bf6ce08e497ad51e7f17389e2abb8bfeec9982b0a110141be
MD5 87db8e966b6fe53e52e628e9ffd041a3
BLAKE2b-256 253ad67856c1008d76e6cfaa243a638ec619257e6e12554c5c35f01784f9c4cf

See more details on using hashes here.

File details

Details for the file playwright_ui5_select-0.0.16-py3-none-any.whl.

File metadata

File hashes

Hashes for playwright_ui5_select-0.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 c3cb147f9fcbad53954039ee7cba43f1b9db0b26ed3b54fa8014b4af41406cd7
MD5 05a8b014495adf6d9df041a6592e694e
BLAKE2b-256 226ff50a216661eac93e4b2eca1485a71158a47845d2fd06be6b93f8ce5f73b2

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