Index: chrome/test/automated_ui_tests/automated_ui_tests.h |
diff --git a/chrome/test/automated_ui_tests/automated_ui_tests.h b/chrome/test/automated_ui_tests/automated_ui_tests.h |
index d370b7080481b4de7cfa90efeefd7846b65eabb4..1db44bbb0762edd978d6dc3ba91c0878135949cf 100644 |
--- a/chrome/test/automated_ui_tests/automated_ui_tests.h |
+++ b/chrome/test/automated_ui_tests/automated_ui_tests.h |
@@ -141,6 +141,15 @@ class AutomatedUITest : public AutomatedUITestBase { |
// XML element: <Dialog/> |
bool ExerciseDialog(); |
+ // Activates "find in page" on the current page. |
+ // XML element: <FindInPage/> |
+ bool FindInPage(); |
+ |
+ // Navigates to the Home page. |
+ // Returns true if call to activate the accelerator is successful. |
+ // XML element: <Home/> |
+ bool Home(); |
+ |
// Opens the JavaScriptConsole window. While it isn't modal, it takes focus |
// from the current browser window, so most of the test can't continue until |
// it is dismissed. |
@@ -217,6 +226,27 @@ class AutomatedUITest : public AutomatedUITestBase { |
// XML element: <UpArrow/> |
bool PressUpArrow(); |
+ // Activates the next tab on the active browser window. |
+ // XML element: <SelectNextTab/> |
+ bool SelectNextTab(); |
+ |
+ // Activates the previous tab on the active browser window. |
+ // XML element: <SelectPrevTab/> |
+ bool SelectPreviousTab(); |
+ |
+ // Displays the bookmark bar. |
+ // Returns true if call to activate the accelerator is successful. |
+ // XML element: <ShowBookmarks/> |
+ bool ShowBookmarkBar(); |
+ |
+ // Opens the Downloads page in the current active browser window. |
+ // XML element: <Downloads/> |
+ bool ShowDownloads(); |
+ |
+ // Opens the History page in the current active browser window. |
+ // XML element: <History/> |
+ bool ShowHistory(); |
+ |
// Stars the current page. This opens a dialog that may or may not be |
// dismissed. |
// XML element: <Star/> |