I have the below script and it executes correctly however I cant get passed the section when system prompts password. I would like to have RF enter the password for me. How can I get this accomplished?
*** Settings ***
Library OperatingSystem
Library Process
*** Variables ***
*** Test Cases ***
Login to Server
Run sftp -o "Port 44444" [email protected]
Side note: Im trying to drop a file into our sftp server.. I know Robot has SSHLibrary, however, due to security we are blocking SSH calls to this server.
Once I get passed the login process I was thinking the rest should be easy.