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 import os |
| 5 |
4 from chrome_remote_control import tab_test_case | 6 from chrome_remote_control import tab_test_case |
5 | 7 |
6 class InspectorPageTest(tab_test_case.TabTestCase): | 8 class InspectorPageTest(tab_test_case.TabTestCase): |
| 9 def __init__(self, *args): |
| 10 super(InspectorPageTest, self).__init__(*args) |
| 11 self._custom_action_called = False |
| 12 |
7 def testPageNavigateToNormalUrl(self): | 13 def testPageNavigateToNormalUrl(self): |
8 self._tab.page.Navigate('http://www.google.com') | 14 self._tab.page.Navigate('http://www.google.com') |
9 self._tab.WaitForDocumentReadyStateToBeComplete() | 15 self._tab.WaitForDocumentReadyStateToBeComplete() |
10 | 16 |
11 def testPageNavigateToUrlChanger(self): | 17 def testPageNavigateToUrlChanger(self): |
12 # The Url that we actually load is http://www.youtube.com/. | 18 # The Url that we actually load is http://www.youtube.com/. |
13 self._tab.page.Navigate('http://youtube.com/') | 19 self._tab.page.Navigate('http://youtube.com/') |
14 | 20 |
15 self._tab.WaitForDocumentReadyStateToBeComplete() | 21 self._tab.WaitForDocumentReadyStateToBeComplete() |
16 | 22 |
17 def testPageNavigateToImpossibleURL(self): | 23 def testPageNavigateToImpossibleURL(self): |
18 self._tab.page.Navigate('http://23f09f0f9fsdflajsfaldfkj2f3f.com') | 24 self._tab.page.Navigate('http://23f09f0f9fsdflajsfaldfkj2f3f.com') |
19 self._tab.WaitForDocumentReadyStateToBeComplete() | 25 self._tab.WaitForDocumentReadyStateToBeComplete() |
| 26 |
| 27 def testCustomActionToNavigate(self): |
| 28 unittest_data_dir = os.path.join(os.path.dirname(__file__), |
| 29 '..', 'unittest_data') |
| 30 self._browser.SetHTTPServerDirectory(unittest_data_dir) |
| 31 self._tab.page.Navigate( |
| 32 self._browser.http_server.UrlOf('page_with_link.html')) |
| 33 self._tab.WaitForDocumentReadyStateToBeComplete() |
| 34 self.assertEquals(self._tab.runtime.Evaluate('document.location.pathname;'), |
| 35 '/page_with_link.html') |
| 36 |
| 37 self._custom_action_called = False |
| 38 def CustomAction(): |
| 39 self._custom_action_called = True |
| 40 self._tab.runtime.Execute('document.getElementById("clickme").click();') |
| 41 |
| 42 self._tab.page.PerformActionAndWaitForNavigate(CustomAction) |
| 43 |
| 44 self.assertTrue(self._custom_action_called) |
| 45 self.assertEquals(self._tab.runtime.Evaluate('document.location.pathname;'), |
| 46 '/blank.html') |
OLD | NEW |