Dev Tools
Client-sidefiles never upload

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      pw456

Tags / runtime filtering

*** Test Cases ***
Smoke Login
    [Tags]    smoke    auth
    ...
# CLI:  robot --include smoke tests/
β€ΊHow to use
  1. Three tabs switch between Robot Framework / Playwright / Appium.
  2. The search box filters snippets live β€” try wait, click, iOS.
  3. Copy next 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