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__ |