Forum Discussion

ibeard's avatar
ibeard
Occasional Contributor
8 years ago

I have a working python script, but it does not work in TestComplete

My script is simple, ssh to a Linux machine and run a script there.   import subprocess def test(): HOST="user@host" COMMAND="/tmp/MyScript" subprocess.Popen("ssh " + HOST + " " + COMMAND, s...