Test framework cheatsheet
Quick reference for Robot Framework, Playwright, and Appium.
Open browser & navigate
Open Browser https://example.com chrome Maximize Browser Window Go To https://example.com/login
Input + submit
Input Text id=email qa@example.com Input Password id=password s3cret Click Button css:button[type='submit']
Wait + assert
Wait Until Element Is Visible css:.dashboard timeout=10s Element Should Contain css:.user-name Mark
Data-driven (Examples table)
*** Test Cases ***
Login With Various Users
[Template] Login With User
alice pw123
bob pw456Tags / runtime filtering
*** Test Cases ***
Smoke Login
[Tags] smoke auth
...
# CLI: robot --include smoke tests/βΊHow to use
- Three tabs switch between Robot Framework / Playwright / Appium.
- The search box filters snippets live β try
wait,click,iOS. Copynext to each snippet drops it straight into your test file.
Tips
- Missing a snippet? Open an issue at [MarkwwLiu/dev](https://github.com/MarkwwLiu/dev) β I'll add it.
Related tools
- Percentile calculatorPaste response times β p50/p90/p95/p99 + Apdex
- HTTP Status Codes60+ HTTP status codes in one place. Filter by class, search by digits or keywords; RFC refs + common-misuse notes (401 vs 403, 302 vs 307)
- npm Bundle Size LookupLook up minified / gzip size, dependency count, tree-shakeability. Compare multiple packages side-by-side for dep decisions