blob: 5544fb56578adc9c2f64dd73c64d3142c526c7e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
*** Settings ***
Library SSHLibrary
Library OperatingSystem
*** Variables ***
${HOST} 104.130.138.49
${USERNAME} test
${private_key} H:\\TestSuite\\testsuite\\robot\\testsuites
*** Test Cases ***
APPC Netstat
Open Connection ${HOST}
${password}= Get File ${private_key}
Login ${USERNAME} ${password}
log to console \nConnected Successfully
${cmd} = set variable netstat -a | grep -E '8443 | grep LISTEN
execute command ${cmd}
Tear Down
[Documentation] Close all connections
Close All connections
|