blob: a24aa320abc4cde70c64eb8c4cd0375e964de1bc [file] [log] [blame]
Sathyajith M Se6956c02017-08-16 01:50:17 -05001*** Settings ***
2Documentation This test suite will validate the "OpenBMC ASMI Menu ->
3... Server Overview" module.
4
5Resource ../../lib/resource.robot
6Test Setup OpenBMC Test Setup
7Test Teardown OpenBMC Test Closure
8
9*** Variables ***
10${xpath_select_overview_1} //*[@id="nav__top-level"]/li[1]/a/span
11${xpath_select_overview_2} //a[@href='#/overview/system']
12${string_display_content} Server overview
13
14*** Test Case ***
15Verify Title Text Content
16 [Documentation] Verify display of title text from "Server Overview"
17 ... module of OpenBMC GUI.
18 [Tags] Verify_Title_Text_Content
19 Verify Display Content
20
21*** Keywords ***
22Verify Display Content
23 [Documentation] Verify displaying of text.
24 Click Button ${xpath_select_overview_1}
25 Click Button ${xpath_select_overview_2}
26 Page Should Contain ${string_display_content}