| Index: chrome/test/webdriver/test/chromedriver_tests.py
|
| diff --git a/chrome/test/webdriver/test/chromedriver_tests.py b/chrome/test/webdriver/test/chromedriver_tests.py
|
| index 175c20bb0a2ff54657abbc4ec774f95181974226..a46937308f486184286e59e53ed45f44aeeb8ba4 100644
|
| --- a/chrome/test/webdriver/test/chromedriver_tests.py
|
| +++ b/chrome/test/webdriver/test/chromedriver_tests.py
|
| @@ -280,6 +280,14 @@ class DesiredCapabilitiesTest(ChromeDriverTest):
|
| self.assertNotEqual(-1, driver.page_source.find('ExtTest2'))
|
| driver.quit()
|
|
|
| + def testUseWebsiteTestingDefaults(self):
|
| + """Test that chromedriver initializes options for website testing."""
|
| + driver = self.GetNewDriver()
|
| + driver.get(self.GetTestDataUrl() + '/content_setting_test.html')
|
| + driver.set_script_timeout(10)
|
| + # Will timeout if infobar appears.
|
| + driver.execute_async_script('waitForGeo(arguments[0])')
|
| +
|
|
|
| class DetachProcessTest(unittest.TestCase):
|
|
|
|
|