Generate Playwright integration tests for Vaadin 25 views using the DramaFinder library, including element interaction, form validation, grid assertions, and navigation checks. Use whenever you are about to write, edit, or run an integration/IT test for a Vaadin view — including when the requirement comes from a GitHub issue, PR, spec, or ticket rather than the user's direct words (e.g. "implement
75
94%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Invoke this skill via the Skill tool — do not just read this
SKILL.md. The files this skill depends on — api-reference.md (the complete DramaFinder API), element-mapping.md, and TESTING.md — are bundled beside this file and only load into context when the skill is invoked, not when you openSKILL.mdby hand. If you are reading this file directly, stop and invoke the skill instead. This is also why the rule below ("never unzip the jar to discover the API") holds: when invoked, the API reference is already in front of you.
Always follow @TESTING.md when generating tests. Key rules:
aria-label, aria-role, or
data-testid over CSS classes or generated IDsgrid.locator("vaadin-grid-cell-content"),
combo.locator("vaadin-combo-box-item")). These shadow/light-DOM tags are
implementation details — the wrapper already exposes the count, content, and
state you need. Raw locators are a last resort, allowed only for a
component that has no wrapper at all (see Step 2).Thread.sleep() — use Playwright auto-waiting or waitFor methods
insteadRun these checks in parallel before doing anything else:
pom.xml for
<artifactId>dramafinder</artifactId>.pom.xml for spring-boot-starter.*IT.java files under src/test/java.SpringPlaywrightIT already in project? —
find src/test/java -name SpringPlaywrightIT.java.Resolve the latest version (Step 1 of setup.md) and propose the following in a single confirmation:
org.vaadin.addons:dramafinder:<VERSION> and
com.microsoft.playwright:playwright (test scope) to pom.xml with
<dramafinder.version> in <properties>.src/test/java/<basePackage>/it/support/SpringPlaywrightIT.java.On confirmation, execute setup.md end-to-end, then continue with Step 2.
If existing *IT.java files are found, read one or two to understand the
project's conventions (base class, package structure, assertion style, helper
methods) and use them as the template.
If no existing IT tests exist, use the default structure in Step 3.
SpringPlaywrightIT locationRead the target view source provided by the user. Extract:
@Route("value") → URL path (default when no value: class name lowercased,
stripped of View suffix, e.g. PersonView → /person; MainView and
Main map to /).@PageTitle("...") → expected page titleSee element-mapping.md for the full component → element
class table, and api-reference.md for the complete public
API (every element, its methods, signatures and one-line descriptions) of the
DramaFinder version bundled with this skill (see the version in its header). If
the project pins an older <dramafinder.version>, a method documented there may
not exist yet — if a call fails to compile, check the project's version before
looking for alternatives.
Never download or unzip the DramaFinder jar/sources to discover its API. The complete, always-current signature reference is bundled beside this skill in api-reference.md (auto-generated from source). If a method isn't there, it doesn't exist in this version — do not guess or dig into the jar. The few components with non-obvious behaviour also have prose docs in the specifications folder.
To look up an element, grep
api-reference.mdfor the element name and read only that section (each is a### <Name>Elementheading) — don't read the whole file. Shared mixin methods are documented once under "Shared mixins".
Before writing any raw locator, confirm there is genuinely no wrapper: check
element-mapping.md and scan src/main/java for
*Element.java files (custom extensions not in the table). Only if neither
covers the component may you use a plain Playwright locator. For recurring
needs, create your own element class extending VaadinElement,
or open an issue in the
DramaFinder repository to request one.
A wrapper exposes the count/content/state you need — use it instead of digging into the component's internal tags.
// ❌ WRONG — reaching into Grid internals with a raw locator
GridElement leaderboardGrid = GridElement.get(page);
// Vaadin Grid renders row cells as vaadin-grid-cell-content inside the grid element
int cellCount = leaderboardGrid.getLocator().locator("vaadin-grid-cell-content").count();
// ✅ RIGHT — use the GridElement API
GridElement leaderboardGrid = GridElement.get(page);
int rows = leaderboardGrid.getRenderedRowCount(); // or getTotalRowCount()
int cols = leaderboardGrid.getColumnCount();
leaderboardGrid.assertCellContent(0, "Score", "100");
leaderboardGrid.assertRowCount(10);The same rule applies to every wrapped component:
ComboBoxElement.selectItem() not combo.locator("vaadin-combo-box-item");
MenuBarElement.getMenuItemElement("File").click() not a raw
vaadin-menu-bar-button locator; and so on.
package <same.package.as.view>; // mirror src/test/java structure
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
import org.vaadin.addons.dramafinder.element.TextFieldElement; // import only used elements
import <basePackage>.it.support.SpringPlaywrightIT; // Spring projects: actual location from Step 1
// import org.vaadin.addons.dramafinder.AbstractBasePlaywrightIT; // non-Spring projects
import static com.microsoft.playwright.assertions.PlaywrightAssertions.assertThat;
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT) // omit if not Spring Boot
public class <ViewName>IT extends SpringPlaywrightIT { // or AbstractBasePlaywrightIT
@Override
public String getView() {
return "/<route-path>";
}
@Test
public void testTitle() {
assertThat(page).hasTitle("<PageTitle value>");
}
// ... component tests below
}Use SpringPlaywrightIT if Spring Boot is detected, AbstractBasePlaywrightIT
otherwise.
Smoke test (one per component):
@Test
public void test<ComponentLabel>() {
TextFieldElement field = TextFieldElement.getByLabel(page, "My Label");
field.assertVisible();
field.assertLabel("My Label");
field.assertValue("");
field.setValue("test value");
field.assertValue("test value");
}Form with validation:
@Test
public void testFormSubmitWithInvalidInput() {
TextFieldElement nameField = TextFieldElement.getByLabel(page, "Name");
ButtonElement submitBtn = ButtonElement.getByText(page, "Save");
nameField.setValue("");
submitBtn.click();
nameField.assertInvalid();
nameField.assertErrorMessage("Field is required");
}
@Test
public void testFormSubmitWithValidInput() {
TextFieldElement nameField = TextFieldElement.getByLabel(page, "Name");
ButtonElement submitBtn = ButtonElement.getByText(page, "Save");
nameField.setValue("Jane Doe");
submitBtn.click();
nameField.assertValid();
}Grid data loading:
@Test
public void testGridLoadsData() {
GridElement grid = GridElement.get(page);
grid.assertRowCount(10); // adjust to expected count
grid.assertCellContent(0, 0, "Expected cell value");
}Place the test in src/test/java mirroring the view's package under
src/main/java.
Interactive session (the user asked for a test in conversation): display the full generated test class in a code block first, then ask:
Shall I write this to
src/test/java/<package>/<ViewName>IT.java?
Only write the file after confirmation.
Autonomous execution (implementing an issue/PR/spec, or running unattended): write the file directly without asking.
Run with mvn verify -Dit.test=<ViewName>IT.
fe74d42
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.