Interface
Toast (notification)
Section titled “Toast (notification)”Shows a message in the interface while the scenario runs.
| Inputs | title (string), message (string) |
| Outputs | none |
| Configuration | title, message, level, duration |
| Field | Values |
|---|---|
level | info (default), success, warning, error |
duration | In seconds; 0 or empty = the notification stays on screen until it is dismissed |
When to use it
Section titled “When to use it”While building a scenario: it is the immediate visual feedback that says “I got this far”.
For a long scenario driven by hand, a success notification at the end saves you
having to watch the log.
In headless mode
Section titled “In headless mode”The action does nothing in windowless execution, and the run carries on as normal — it does not fail.
That is why it does not replace
Log: for a trace that will survive
CI, use Log, whose output is written to the console and to the --out file.