| Index: tools/chrome_remote_control/chrome_remote_control/tab_test_case.py
|
| diff --git a/tools/chrome_remote_control/chrome_remote_control/tab_unittest.py b/tools/chrome_remote_control/chrome_remote_control/tab_test_case.py
|
| similarity index 68%
|
| copy from tools/chrome_remote_control/chrome_remote_control/tab_unittest.py
|
| copy to tools/chrome_remote_control/chrome_remote_control/tab_test_case.py
|
| index 289efe065c627668f9ae89d569ad3361838a0fc9..d030ad76f0108221dbd29e22a09474bbdc925b6b 100644
|
| --- a/tools/chrome_remote_control/chrome_remote_control/tab_unittest.py
|
| +++ b/tools/chrome_remote_control/chrome_remote_control/tab_test_case.py
|
| @@ -7,7 +7,7 @@ import browser_options
|
| import tab
|
| import unittest
|
|
|
| -class TabTest(unittest.TestCase):
|
| +class TabTestCase(unittest.TestCase):
|
| def setUp(self):
|
| self._browser = None
|
| self._tab = None
|
| @@ -28,10 +28,3 @@ class TabTest(unittest.TestCase):
|
| if self._browser:
|
| self._browser.Close()
|
|
|
| - def testNavigateAndWaitToForCompleteState(self):
|
| - self._tab.page.Navigate("http://www.google.com")
|
| - self._tab.WaitForDocumentReadyStateToBeComplete()
|
| -
|
| - def testNavigateAndWaitToForInteractiveState(self):
|
| - self._tab.page.Navigate("http://www.google.com")
|
| - self._tab.WaitForDocumentReadyStateToBeInteractiveOrBetter()
|
|
|