Updates:
Status: Pending
Comment #3 on issue 39 by [email protected]: Possibility to run
commands via ssh
http://code.google.com/p/robotframework-sshlibrary/issues/detail?id=39
Open Connection host
Login username password
${output}= Execute Command ls
Is the way to run a single command over an SSH connection. You can wrap
that in a user keyword, so that in a test case it is only a single line. If
you want an interactive session, you have to use Write * and Read *
-keywords:
Open Connection host
Login user password
Write cmd
${output} Read Until Prompt
Write further input
....
Or is there a scenario that is not covered by these two?