Add testcase to verify dump page input boxes

    Verify Existence Of All Input Boxes In Dump Page

Change-Id: I254b2cc61a6ab40111a3bacd9b070065595e7340
Signed-off-by: manashsarma <manashsarma@in.ibm.com>
diff --git a/gui/gui_test/health_menu/test_dump_sub_menu.robot b/gui/gui_test/health_menu/test_dump_sub_menu.robot
index fe56026..f1f1697 100644
--- a/gui/gui_test/health_menu/test_dump_sub_menu.robot
+++ b/gui/gui_test/health_menu/test_dump_sub_menu.robot
@@ -12,6 +12,10 @@
 
 ${xpath_dumps_heading}         //h1[text()="Dumps"]
 ${xpath_initiate_dump_button}  //button[contains(text(),'Initiate dump')]
+${xpath_select_dump_type}      //*[@id="selectDumpType"]
+${xpath_dump_from_date}        //*[@id="input-from-date"]
+${xpath_dump_to_date}          //*[@id="input-to-date"]
+${xpath_dump_search_global}    //*[@id="searchInput-264"]
 
 
 *** Test Cases ***
@@ -37,6 +41,15 @@
 
     Page Should Contain Element  ${xpath_initiate_dump_button}
 
+Verify Existence Of All Input Boxes In Dump Page
+    [Documentation]  Verify existence of all input boxes in dump page.
+    [Tags]  Verify_Existence_Of_All_Input_Boxes_In_Dump_Page
+
+    Page Should Contain Element  ${xpath_select_dump_type}
+    Page Should Contain Element  ${xpath_dump_from_date}
+    Page Should Contain Element  ${xpath_dump_to_date}
+    Page Should Contain Element  ${xpath_dump_search_global}
+
 
 *** Keywords ***