blob: c79da34ba58efefb059f33bd84d780d98fd184d9 [file] [log] [blame]
subhash kumar singh729baad2017-09-06 19:58:29 +05301*** Settings ***
2Library RequestsLibrary
3
4*** Test Cases ***
5Liveness Test
6 [Documentation] Check cli liveness check
7 Create Session cli http://${CLI_IP}:8080
8 CheckUrl cli /
9
10*** Keywords ***
11CheckUrl
12 [Arguments] ${session} ${path}
13 ${resp}= Get Request ${session} ${path}
14 Should Be Equal As Integers ${resp.status_code} 200
15
16