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

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

Issue 11415205: [chromedriver] Implement connecting to devtools and loading a page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month 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/test.py
diff --git a/chrome/test/chromedriver/test.py b/chrome/test/chromedriver/test.py
index 488b47a4bf8849a4a327b163855a0a1527edda80..4f3318c8a64be0ad63ace63897fb5a43f4718aa7 100644
--- a/chrome/test/chromedriver/test.py
+++ b/chrome/test/chromedriver/test.py
@@ -19,6 +19,11 @@ class ChromeDriverTest(unittest.TestCase):
driver = chromedriver.ChromeDriver(_CHROMEDRIVER_LIB)
driver.Quit()
+ def testLoadUrl(self):
+ driver = chromedriver.ChromeDriver(_CHROMEDRIVER_LIB)
+ driver.Load('http://www.google.com')
+ driver.Quit()
+
if __name__ == '__main__':
if len(sys.argv) != 2:
print 'Usage: %s <path_to_chromedriver_so>' % __file__
« chrome/test/chromedriver/status.cc ('K') | « chrome/test/chromedriver/status_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698