You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to robotframework-users
I'm new to Robot Framework and am struggling with how to send a CTRL-C
using the telnet or ssh library.
I've tried setting a variable to various values and using the
library's write keyword to send it, but nothing seems to work.
Here are the values I've tried:
Set Test Variable ${CONTROL-C} [03
Set Test Variable ${CONTROL-C} ^03
Set Test Variable ${CONTROL-C} [03]
Set Test Variable ${CONTROL-C} \\c
For each one of them I tried
SSHLibrary.Write ${CONTROL-C}
None of them seem to work in that the process on the machine that has
been ssh'ed to doesn't stop.
Any ideas?
sbruhn
unread,
Jan 27, 2012, 3:50:07 AM1/27/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to robotframework-users
That's how it works for me for SSH
${crtl_c} Evaluate chr(int(3))
SSHLibrary.Write Bare ${crtl_c}
learner
unread,
Jan 27, 2012, 4:02:10 PM1/27/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message