Features

Playwright & PyTest

To use PyTest with Playwright, we'll need a Python library that automates via Playwright.
Microsoft's playwright-python library provides a Python library which does Automation via Playwright.

To get started, please install these packages:

pip install pytest-playwright
playwright install

Now you're ready to use Python with Playwright. You can take a look at the playwright-python examples on how to do this.

Example

To get started, please see this simple example below.
This will start a new Chrome browser in the TestingBot browser grid, and allow PyTest to control the browser via Playwright.

import pytest
from playwright.sync_api import Playwright

@pytest.fixture
def browser(playwright: Playwright):
  return playwright.chromium.connect(ws_endpoint = 'wss://cloud.testingbot.com?key=api_key&secret=api_secret&browserName=chrome&browserVersion=latest', timeout=90000)

def test_title(browser):
  page = browser.new_page()
  page.goto('https://testingbot.com')
  assert page.title() == 'TestingBot: Cross Browser Testing and Mobile App Testing'
  browser.close()

This example will open a Chrome browser, navigate to the TestingBot homepage and verify the page's title.

Parallel Testing with PyTest

One of the great advantages of our service is that you can run multiple tests simultaneously (in parallel).
This drastically shortens the total duration of your test suite, as multiple tests will run concurrently.


We recommend using pytest-parallel.