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

Unified Diff: chrome/test/webdriver/test/chromedriver_factory.py

Issue 8806030: Add commands to Chrome WebDriver for installing and manipulating extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 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/webdriver/test/chromedriver.py ('k') | chrome/test/webdriver/test/chromedriver_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/test/chromedriver_factory.py
diff --git a/chrome/test/webdriver/test/chromedriver_factory.py b/chrome/test/webdriver/test/chromedriver_factory.py
index 3f96947d402a1a9b0e18f881f1e217fdb6aac5f8..04dbfa5dd022951522a097ee24336c2bfee3b36f 100644
--- a/chrome/test/webdriver/test/chromedriver_factory.py
+++ b/chrome/test/webdriver/test/chromedriver_factory.py
@@ -5,10 +5,10 @@
"""Factory that creates ChromeDriver instances."""
import copy
-from selenium.webdriver.remote.webdriver import WebDriver
+import chromedriver
-class WebDriverWrapper(WebDriver):
+class WebDriverWrapper(chromedriver.WebDriver):
def __init__(self, executor, capabilities):
super(WebDriverWrapper, self).__init__(executor, capabilities)
self._did_quit = False
« no previous file with comments | « chrome/test/webdriver/test/chromedriver.py ('k') | chrome/test/webdriver/test/chromedriver_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698