CtrlK
BlogDocsLog inGet started
Tessl Logo

dramafinder/vaadin-playwright-test

Generate Playwright integration tests for Vaadin 25 views using the DramaFinder library. Use when the user wants to write IT tests for a Vaadin view, mentions DramaFinder, or asks about Playwright testing in a Vaadin project.

73

Quality

92%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Overview
Quality
Evals
Security
Files

UploadElement.mddocs/specifications/

UploadElement

Full API (methods, signatures, descriptions): see api-reference.md. This note covers only behaviour that isn't obvious from the signatures.

Files are fed through the hidden native file input

uploadFiles(Path...) feeds files via the component's hidden native <input type="file"> (Playwright setInputFiles), not by clicking the upload button. Upload completion is asserted from the file row's state, so wait for it after adding a file rather than assuming the upload is instant.

Path testFile = Path.of("/path/to/test.pdf");
upload.uploadFiles(testFile);

upload.assertHasFile("test.pdf");
// Wait for the row to report completion
upload.assertFileComplete("test.pdf");

.mcp.json

llms.txt

PLAN.md

README.md

tile.json

TODO.md

tsconfig.json