Fastest Commands
These commands execute quickly and can be relied upon for high-frequency usage in complex test sequences.Medium Performance Commands
These are reliable but may involve minor delays due to image processing, UI rendering, or input simulation.Slower Commands
These commands tend to be slower due to intensive image comparison, polling loops, or delays in dynamic content rendering.- Avoid overusing
match-imageunless strictly necessary. Preferwait-for-textorhover-textwhen working with text-based UIs. - Use
rememberandassertearly in the test to catch failures before expensive commands. - Favor
execfor background operations like launching processes or setting up test conditions. - Use
waitintentionally and sparingly ā prefer dynamic waits (wait-for-image,wait-for-text) when possible. - Monitor cumulative test time. Replacing slower commands can dramatically improve test suite duration.

