Hi all,
i'm trying to use 'timeout' argument in 'Read Until' keyword from SSH Library but not working..
This is the code:
Write h=`date +"%Y/%m/%d"`;while true; do [ "$(ls -A /var/local/logparser/backup/parsed/$h/)" ] && break || continue; done; echo "FIM";
${output}= Read Until FIM timeout=120 seconds
Should Contain ${output} FIM
and still getting defauld error:
No match found for 'FIM' in 3 seconds
I try to pass only '120 seconds' but no success.
On the documentation has none exemple of this argument, but is mentioned in this paragraph:
Default timeout
Argument timeout is used by Read Until variants. The default value is 3 seconds.
Value must be in Robot Framework's time format, e.g. 3, 4.5s, 1 minute and 2 min 3 s are all accepted. See section Time Format in the Robot Framework User Guide for details.