Dev Tools

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/