Skip to content

Commit 3a0505f

Browse files
committed
Simple Browser import
1 parent afaaeaf commit 3a0505f

3 files changed

Lines changed: 18 additions & 10 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*** Settings ***
2+
Documentation Connects to the Checkmk login page and verifies that the page contains "login"
3+
Library RequestsLibrary
4+
5+
*** Test Cases ***
6+
7+
Checkmk Successful Login
8+
Login Page Is Reachable
9+
10+
*** Keywords ***
11+
12+
Login Page Is Reachable
13+
Create Session cmk http://127.0.0.1:5000/cmk
14+
${resp}= GET On Session cmk check_mk/login.py
15+
Should Be Equal As Integers ${resp.status_code} 200
16+
Should Contain ${resp.text} Login

labs/robotmk-lab-slac26/solutions/01_rf-basics/Resources/BrowserCommon.resource

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
*** Settings ***
2-
Library Browser
3-
... run_on_failure=BrowserCommon.Take A Screenshot
4-
... enable_playwright_debug=disabled
5-
... auto_delete_passed_tracing=True
6-
... timeout=20s
2+
Library Browser timeout=20s
73

84

95
*** Keywords ***

labs/robotmk-lab-slac26/solutions/01_rf-basics/Resources/Checkmk.resource

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
*** Settings ***
2-
Library Browser
3-
... run_on_failure=BrowserCommon.Take A Screenshot
4-
... enable_playwright_debug=disabled
5-
... auto_delete_passed_tracing=True
6-
... timeout=20s
2+
Library Browser timeout=20s
73

84
*** Keywords ***
95

0 commit comments

Comments
 (0)