1*** Settings *** 2 3Documentation Test OpenBMC GUI "Reboot BMC" sub-menu of "Server control". 4 5Resource ../../lib/resource.robot 6 7Suite Setup Launch Browser And Login OpenBMC GUI 8Suite Teardown Close Browser 9Test Setup Test Setup Execution 10 11 12*** Variables *** 13 14${xpath_reboot_bmc_button} //button[text()[contains(.,"Reboot BMC")]] 15 16 17*** Test Cases *** 18 19Verify Existence Of All Sections In Reboot BMC Page 20 [Documentation] Verify existence of all sections in reboot BMC page. 21 [Tags] Verify_Existence_Of_All_Sections_In_Reboot_BMC_Page 22 23 Page Should Contain Current BMC boot status 24 25 26Verify Existence Of All Buttons In Reboot BMC Page 27 [Documentation] Verify existence of all buttons in reboot BMC page. 28 [Tags] Verify_Existence_Of_All_Buttons_In_Reboot_BMC_Page 29 30 Page Should Contain Element ${xpath_reboot_bmc_button} 31 32 33*** Keywords *** 34 35Test Setup Execution 36 [Documentation] Do test case setup tasks. 37 38 Wait Until Page Does Not Contain Element ${xpath_refresh_circle} 39 Click Element ${xpath_select_server_control} 40 Wait Until Page Does Not Contain Element ${xpath_refresh_circle} 41 Click Element ${xpath_select_reboot_bmc} 42 Wait Until Page Contains Reboot BMC 43