17ea47c47SRahul Maheshwari*** Settings ***
27ea47c47SRahul Maheshwari
37ea47c47SRahul MaheshwariDocumentation  Test OpenBMC GUI "Virtual Media" sub-menu of "Server control".
47ea47c47SRahul Maheshwari
57ea47c47SRahul MaheshwariResource        ../../lib/resource.robot
67ea47c47SRahul Maheshwari
77ea47c47SRahul MaheshwariSuite Setup     Launch Browser And Login OpenBMC GUI
87ea47c47SRahul MaheshwariSuite Teardown  Close Browser
97ea47c47SRahul MaheshwariTest Setup      Test Setup Execution
107ea47c47SRahul Maheshwari
117ea47c47SRahul Maheshwari
127ea47c47SRahul Maheshwari*** Variables ***
137ea47c47SRahul Maheshwari
147ea47c47SRahul Maheshwari${xpath_start_button}        //*[@class='vm__upload-start']
157ea47c47SRahul Maheshwari${xpath_choose_file_button}  //*[@class='vm__upload-choose-label']
167ea47c47SRahul Maheshwari
177ea47c47SRahul Maheshwari
187ea47c47SRahul Maheshwari*** Test Cases ***
197ea47c47SRahul Maheshwari
20*58042c08SGeorge KeishingVerify Existence Of All Sections In Virtual Media Page
21*58042c08SGeorge Keishing    [Documentation]  Verify existence of all sections in virtual media page.
22*58042c08SGeorge Keishing    [Tags]  Verify_Existence_Of_All_Sections_In_Virtual_Media_Page
237ea47c47SRahul Maheshwari
247ea47c47SRahul Maheshwari    Page Should Contain  Virtual media device
257ea47c47SRahul Maheshwari
267ea47c47SRahul Maheshwari
27*58042c08SGeorge KeishingVerify Existence Of All Buttons In Virtual Media Page
287ea47c47SRahul Maheshwari    [Documentation]  Verify existence of all buttons in virtual media page.
29*58042c08SGeorge Keishing    [Tags]  Verify_Existence_Of_All_Buttons_In_Virtual_Media_Page
307ea47c47SRahul Maheshwari
317ea47c47SRahul Maheshwari    Page Should Contain Element  ${xpath_start_button}
327ea47c47SRahul Maheshwari    Page Should Contain Element  ${xpath_choose_file_button}
337ea47c47SRahul Maheshwari
347ea47c47SRahul Maheshwari
357ea47c47SRahul Maheshwari*** Keywords ***
367ea47c47SRahul Maheshwari
377ea47c47SRahul MaheshwariTest Setup Execution
387ea47c47SRahul Maheshwari    [Documentation]  Do test case setup tasks.
397ea47c47SRahul Maheshwari
407ea47c47SRahul Maheshwari    Wait Until Page Does Not Contain Element  ${xpath_refresh_circle}
417ea47c47SRahul Maheshwari    Click Element  ${xpath_select_server_control}
427ea47c47SRahul Maheshwari    Wait Until Page Does Not Contain Element  ${xpath_refresh_circle}
437ea47c47SRahul Maheshwari    Click Element  ${xpath_select_virtual_media}
447ea47c47SRahul Maheshwari    Wait Until Page Contains  Virtual media
45