-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added test cases for GUI factory reset sub menu
Test cases added: - Verify Navigation To Factory Reset Page - Verify Existence Of All Sections In Factory Reset Page - Verify Existence Of All Buttons In Factory Reset Page Signed-off-by: Rahul Maheshwari <[email protected]> Change-Id: I8934facf2aeef92493a3918722fc59dc1ad584f1
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
gui/gui_test/control_menu/test_factory_reset_sub_menu.robot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
*** Settings *** | ||
|
||
Documentation Test suite for OpenBMC GUI "Factory reset" sub-menu of "Control" menu. | ||
Resource ../../lib/gui_resource.robot | ||
|
||
Suite Setup Suite Setup Execution | ||
Suite Teardown Close Browser | ||
|
||
|
||
*** Variables *** | ||
|
||
${xpath_factory_reset_heading} //h1[text()="Factory reset"] | ||
${xpath_reset_button} //button[contains(text(),'Reset')] | ||
|
||
|
||
*** Test Cases *** | ||
|
||
Verify Navigation To Factory Reset Page | ||
[Documentation] Verify navigation to factory reset page. | ||
[Tags] Verify_Navigation_To_Factory_Reset_Page | ||
Page Should Contain Element ${xpath_factory_reset_heading} | ||
|
||
|
||
Verify Existence Of All Sections In Factory Reset Page | ||
[Documentation] Verify existence of all sections in factory reset page. | ||
[Tags] Verify_Existence_Of_All_Sections_In_Factory_Reset_Page | ||
Page Should Contain Reset options | ||
|
||
|
||
Verify Existence Of All Buttons In Factory Reset Page | ||
[Documentation] Verify existence of all buttons in factory reset page. | ||
[Tags] Verify_Existence_Of_All_Buttons_In_Factory_Reset_Page | ||
Page Should Contain Element ${xpath_reset_button} | ||
|
||
|
||
*** Keywords *** | ||
|
||
Suite Setup Execution | ||
[Documentation] Do test suite setup tasks. | ||
Launch Browser And Login GUI | ||
Click Element ${xpath_control_menu} | ||
Click Element ${xpath_factory_reset_sub_menu} | ||
Wait Until Keyword Succeeds 30 sec 5 sec Location Should Contain factory-reset |