Skip to content

Advanced Tutorials

Automation

automate "click" on "#button"

Custom Functions

def greet(name) {
    echo "Hello, " + name
}
greet("World")

Error Handling

try {
    risky()
} catch (e) {
    echo e
}

See the FAQ for more help.