Console Input alternative to Dialogs 'Pause Execution' or '' Get Selection From User'

You could try (in a POSIX system):

*** Settings ***
Library    OperatingSystem

*** Keywords ***
Console Pause
    Run     echo -n "Press ENTER to continue... " && read ignore

(I don’t know if this input interaction works :wink:

Anyway, you could look to make a similar Python code.

2 Likes