For the complete documentation index, see llms.txt. This page is also available as Markdown.

Overview

Loadmill supports browser testing with Playwright and natural-language UI Agent steps. You can create UI-only tests or combine browser actions with API requests in the same flow.

Hybrid testing keeps UI coverage focused on behavior that must be observed in the browser. API steps can prepare data, authenticate users, or validate backend state, while Playwright or the UI Agent handles the visible user journey.

Choose a UI step

Use a Playwright step when you want exact, reviewable browser automation code and direct control over interactions and assertions.

Use a UI Agent step when you want to describe a browser goal and its validation in natural language. The agent interprets the visible page and works toward that goal.

Why combine API and UI steps?

Browser tests become slower and more fragile when every setup action must happen through the UI. A hybrid flow can create the required state through an API, validate the user-facing behavior in the browser, and verify the final state through another API request.

This keeps the test close to the business journey while reducing unnecessary UI interactions.

Get started

Last updated