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

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: address comments Created 8 years 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
« no previous file with comments | « chrome/test/chromedriver/status_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/test.py
diff --git a/chrome/test/chromedriver/test.py b/chrome/test/chromedriver/test.py
index 6f17e2a84556c0ee6f76425b42708a021e962ff3..de37fc5eb403a34cf3a281b6a4f383b1969e8076 100644
--- a/chrome/test/chromedriver/test.py
+++ b/chrome/test/chromedriver/test.py
@@ -19,6 +19,12 @@ class ChromeDriverTest(unittest.TestCase):
driver = chromedriver.ChromeDriver(_CHROMEDRIVER_LIB, _CHROME_BINARY)
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 and len(sys.argv) != 3:
print ('Usage: %s <path_to_chromedriver_so> [path_to_chrome_binary]' %
« no previous file with comments | « chrome/test/chromedriver/status_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698