How to setup Visual Studio so that i can run robot framework file? I am able to save files on VS code as .robot. it tries to open up chrome browser as soong as i run below robot code.
*** Settings ***
Documentation Robot Framework test script
Library SSHLibrary
*** Variables ***
${host} 11.11.11.11
${username} username
${password} password
${alias} remote_host_1
*** Test Cases ***
Test SSH Connection
Open Connection ${host} alias=${alias}
Login ${username} ${password} delay=1
Execute Command hostname
Close All Connections
I tried to run this code using eclipse but it gave error msg "No keyword with name 'Open Connection' found." even though sshlibrary is already installed. this code runs fine on "RIDE" IDE.