Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Unified Diff: tools/chrome_remote_control/chrome_remote_control/tab_test_case.py

Issue 10916227: More polish in prep for CrOS support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for landing Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()

Powered by Google App Engine
This is Rietveld 408576698