| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "chrome/browser/extensions/extension_apitest.h" | 5 #include "chrome/browser/extensions/extension_apitest.h" |
| 6 #include "chrome/browser/extensions/extension_browsertest.h" | 6 #include "chrome/browser/extensions/extension_browsertest.h" |
| 7 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 7 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 8 #include "chrome/common/chrome_switches.h" | 8 #include "chrome/common/chrome_switches.h" |
| 9 #include "chrome/test/base/ui_test_utils.h" | 9 #include "chrome/test/base/ui_test_utils.h" |
| 10 #include "content/public/test/browser_test_utils.h" | 10 #include "content/public/test/browser_test_utils.h" |
| 11 #include "net/base/mock_host_resolver.h" | 11 #include "net/dns/mock_host_resolver.h" |
| 12 | 12 |
| 13 // Used to fire all of the listeners on the buttons. | 13 // Used to fire all of the listeners on the buttons. |
| 14 static const char kScriptClickAllTestButtons[] = | 14 static const char kScriptClickAllTestButtons[] = |
| 15 "(function() {" | 15 "(function() {" |
| 16 " setRunningAsRobot();" | 16 " setRunningAsRobot();" |
| 17 " var buttons = document.getElementsByTagName('button');" | 17 " var buttons = document.getElementsByTagName('button');" |
| 18 " for (var i=0; i < buttons.length; i++) {" | 18 " for (var i=0; i < buttons.length; i++) {" |
| 19 " buttons[i].click();" | 19 " buttons[i].click();" |
| 20 " }" | 20 " }" |
| 21 "})();"; | 21 "})();"; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 47 TabStripModel* tab_strip = browser()->tab_strip_model(); | 47 TabStripModel* tab_strip = browser()->tab_strip_model(); |
| 48 | 48 |
| 49 // Run the test by firing all the buttons. Wait until completion. | 49 // Run the test by firing all the buttons. Wait until completion. |
| 50 ResultCatcher catcher; | 50 ResultCatcher catcher; |
| 51 ASSERT_TRUE(content::ExecuteScript(tab_strip->GetActiveWebContents(), | 51 ASSERT_TRUE(content::ExecuteScript(tab_strip->GetActiveWebContents(), |
| 52 kScriptClickAllTestButtons)); | 52 kScriptClickAllTestButtons)); |
| 53 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); | 53 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); |
| 54 } | 54 } |
| 55 | 55 |
| 56 } // namespace extensions | 56 } // namespace extensions |
| OLD | NEW |