1*** Settings *** 2 3Documentation Test OpenBMC GUI header. 4 5Resource ../../lib/resource.robot 6 7Suite Setup Launch Browser And Login GUI 8Suite Teardown Close Browser 9 10 11*** Variables *** 12 13${xpath_header_text} //*[contains(@class, "navbar-text")] 14 15 16*** Test Cases *** 17 18Verify GUI Header Text 19 [Documentation] Verify text in GUI header. 20 [Tags] Verify_GUI_Header_Text 21 22 ${gui_header_text}= Get Text ${xpath_header_text} 23 Should Contain ${gui_header_text} BMC System Management 24 25 26Verify GUI Logout 27 [Documentation] Verify OpenBMC GUI logout. 28 [Tags] Verify_GUI_Logout 29 30 Click Element ${xpath_logout_button} 31 Wait Until Page Contains Element ${xpath_login_button} timeout=15s 32