Playwright Test Runner
No credit card required
Playwright Test Runner
No credit card required
Run Playwright tests across numerous browser configurations with Apify. Create your tests in seconds and get comprehensive test reports faster than ever.
You can access the Playwright Test Runner programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = { "testCode": """import { test, expect } from '@playwright/test';
9 test('has title', async ({ page }) => {
10 await page.goto('https://playwright.dev/');
11 // Expect a title \"to contain\" a substring.
12 await expect(page).toHaveTitle(/Playwright/);
13 });
14 test('get started link', async ({ page }) => {
15 await page.goto('https://playwright.dev/');
16 // Click the get started link.
17 await page.getByRole('link', { name: 'Get started' }).click();
18 // Expects the URL to contain intro.
19 await expect(page).toHaveURL(/.*intro/);
20 });""" }
21
22# Run the Actor and wait for it to finish
23run = client.actor("jindrich.bar/playwright-test").call(run_input=run_input)
24
25# Fetch and print Actor results from the run's dataset (if there are any)
26print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
27for item in client.dataset(run["defaultDatasetId"]).iterate_items():
28 print(item)
29
30# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Playwright Test Runner API in Python
The Apify API client for Python is the official library that allows you to use Playwright Test Runner API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
pip install apify-client
Other API clients include:
Actor Metrics
2 monthly users
-
5 stars
>99% runs succeeded
Created in Feb 2023
Modified 2 years ago