| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/test/scoped_feature_list.h" | |
| 12 #include "chrome/test/base/in_process_browser_test.h" | 11 #include "chrome/test/base/in_process_browser_test.h" |
| 13 | 12 |
| 14 namespace content { | 13 namespace content { |
| 15 class RenderFrameHost; | 14 class RenderFrameHost; |
| 16 } | 15 } |
| 17 | 16 |
| 18 namespace options { | 17 namespace options { |
| 19 | 18 |
| 20 class OptionsUIBrowserTest : public InProcessBrowserTest { | 19 class OptionsUIBrowserTest : public InProcessBrowserTest { |
| 21 public: | 20 public: |
| 22 OptionsUIBrowserTest(); | 21 OptionsUIBrowserTest(); |
| 23 | 22 |
| 24 void SetUpInProcessBrowserTestFixture() override; | |
| 25 | |
| 26 // Navigate to the Uber/Settings page and block until it has loaded. | 23 // Navigate to the Uber/Settings page and block until it has loaded. |
| 27 void NavigateToSettings(); | 24 void NavigateToSettings(); |
| 28 | 25 |
| 29 // Navigate to a certain subpage in the Uber/Settings page and block until it | 26 // Navigate to a certain subpage in the Uber/Settings page and block until it |
| 30 // has loaded. | 27 // has loaded. |
| 31 void NavigateToSettingsSubpage(const std::string& sub_page); | 28 void NavigateToSettingsSubpage(const std::string& sub_page); |
| 32 | 29 |
| 33 // Navigate to the Settings frame and block until complete. | 30 // Navigate to the Settings frame and block until complete. |
| 34 void NavigateToSettingsFrame(); | 31 void NavigateToSettingsFrame(); |
| 35 | 32 |
| 36 // Check navbar's existence. | 33 // Check navbar's existence. |
| 37 void VerifyNavbar(); | 34 void VerifyNavbar(); |
| 38 | 35 |
| 39 // Verify that the page title is correct. | 36 // Verify that the page title is correct. |
| 40 // The only guarantee we can make about the title of a settings tab is that | 37 // The only guarantee we can make about the title of a settings tab is that |
| 41 // it should contain IDS_SETTINGS_TITLE somewhere. | 38 // it should contain IDS_SETTINGS_TITLE somewhere. |
| 42 void VerifyTitle(); | 39 void VerifyTitle(); |
| 43 | 40 |
| 44 protected: | 41 protected: |
| 45 // Returns the RenderFrameHost associated with the Settings frame inside the | 42 // Returns the RenderFrameHost associated with the Settings frame inside the |
| 46 // Uber UI page (which must be already loaded). | 43 // Uber UI page (which must be already loaded). |
| 47 content::RenderFrameHost* GetSettingsFrame(); | 44 content::RenderFrameHost* GetSettingsFrame(); |
| 48 | 45 |
| 49 private: | 46 private: |
| 50 base::test::ScopedFeatureList disable_md_settings_; | |
| 51 | |
| 52 DISALLOW_COPY_AND_ASSIGN(OptionsUIBrowserTest); | 47 DISALLOW_COPY_AND_ASSIGN(OptionsUIBrowserTest); |
| 53 }; | 48 }; |
| 54 | 49 |
| 55 } // namespace options | 50 } // namespace options |
| 56 | 51 |
| 57 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_ | 52 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_ |
| OLD | NEW |