This release is a pre-release and may not be stable for production use.
testmuai-playwright-bindings
TestMu binding for Playwright Python — a thin test runtime for running TestMu-exported tests locally or on the LambdaTest grid.
Installation
pip install testmuai-playwright-bindings
Then install the Playwright browsers (one-time):
playwright install
Quick Start
Set credentials (LambdaTest grid) once in your environment:
export LT_USERNAME="your_username"
export LT_ACCESS_KEY="your_access_key"
Then write a test:
import testmu
@testmu.test
async def my_test(page):
async with testmu.step("Open site"):
await page.goto("https://example.com")
async with testmu.step("Verify title"):
await testmu.expect(page).to_have_title("Example Domain")
testmu.run(my_test)
testmu.run() is a synchronous entry point — it sets up the session,
launches the browser, runs your test, and tears everything down.
Configuration
Configuration is sourced from environment variables. See .env.example for the full list. The most common ones:
| Variable | Purpose | Required |
|---|---|---|
LT_USERNAME |
LambdaTest grid username | For cloud features |
LT_ACCESS_KEY |
LambdaTest grid access key | For cloud features |
TESTMU_HEADLESS |
true (default) or false |
No |
TESTMU_SMART |
1 to enable vision/heal AI features |
No |
Test-level metadata (build, name, variables, etc.) can be passed via
testmu.configure(...) at the top of generated test files.
Features
@testmu.test— decorator that wraps async Playwright tests with session lifecycle managementtestmu.step(...)— context manager for structured test stepstestmu.var()/testmu.set_var()— template-based variable resolution (with ATMS lookup when authed)- Helpers —
execute_js,execute_api,execute_db,vision_query,network_query,smartui_snapshot_async, and more - Reporters — local console reporter and TestMu cloud reporter (LambdaTest dashboard)
- Self-healing locators — automatic locator recovery via heal patch (when smart mode enabled)
Requirements
- Python ≥ 3.11
- Playwright ≥ 1.57.0
Links
- PyPI: https://pypi.org/project/testmuai-playwright-bindings/
- TestMu: https://testmu.ai
- LambdaTest grid: https://www.lambdatest.com
- Issues: https://github.com/LambdaTest/testmuai-bindings/issues
License
Released under the MIT License.
Release files for testmuai-playwright-bindings 0.1.36b2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| testmuai_playwright_bindings-0.1.36b2.tar.gz | 205.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| testmuai_playwright_bindings-0.1.36b2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 447.0 kB
Release files / testmuai_playwright_bindings-0.1.36b2.tar.gz
| Download URL | testmuai_playwright_bindings-0.1.36b2.tar.gz |
|---|---|
| Size | 205.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5132d28f2a5f16749887c1a47b5173469e393a5991a1f054353cb3537d647a1b
|
|
BLAKE2b-256 checksum How to use checksums |
1e0c69ddc0d510c9b67ffc8970954fed7e2ee62e4bb876961023e02b364798ab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.16
|
Release files / testmuai_playwright_bindings-0.1.36b2-py3-none-any.whl
| Download URL | testmuai_playwright_bindings-0.1.36b2-py3-none-any.whl |
|---|---|
| Size | 241.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
edbff4d922250cdb4d422c6285aaddc86bf437a64b5e24231e96b1a503bc8c3f
|
|
BLAKE2b-256 checksum How to use checksums |
89e46e9bbae6d25b7cd12e7c2344fdcfb6b948a13fda1c20d306583f814894b4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.16
|