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

Unified Diff: chrome/test/chromedriver/run_py_tests.py

Issue 12321057: [chromedriver] Implement reconnection to DevTools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and address comments. Created 7 years, 10 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: chrome/test/chromedriver/run_py_tests.py
diff --git a/chrome/test/chromedriver/run_py_tests.py b/chrome/test/chromedriver/run_py_tests.py
index 9630eda52eb44dabeec10f46bbdb005c76696d7e..5969707cd5ae3c3a5772849d320db0211a8e2c23 100755
--- a/chrome/test/chromedriver/run_py_tests.py
+++ b/chrome/test/chromedriver/run_py_tests.py
@@ -185,6 +185,7 @@ class ChromeDriverTest(unittest.TestCase):
def testFindElements(self):
self._driver.ExecuteScript(
'document.body.innerHTML = "<div>a</div><div>b</div>";')
+ import pdb; pdb.set_trace()
chrisgao (Use stgao instead) 2013/03/05 07:00:12 To be removed in next patch.
chrisgao (Use stgao instead) 2013/03/06 01:19:54 Done.
result = self._driver.FindElements('tag name', 'div')
self.assertTrue(isinstance(result, list))
self.assertEquals(2, len(result))

Powered by Google App Engine
This is Rietveld 408576698