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

Unified Diff: chrome/test/functional/execute_javascript.py

Issue 8649004: Allow chromedriver to install an extension and get all installed extension IDs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 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/functional/execute_javascript.py
diff --git a/chrome/test/functional/execute_javascript.py b/chrome/test/functional/execute_javascript.py
index b935a5139874deb84f4c3ede182c9da81df368a4..29a282c45d381a504be187076bb129d872c96932 100644
--- a/chrome/test/functional/execute_javascript.py
+++ b/chrome/test/functional/execute_javascript.py
@@ -37,7 +37,7 @@ class ExecuteJavascriptTest(PyUITest):
"""Test we can inject JavaScript into an extension."""
dir_path = os.path.abspath(
os.path.join(self.DataDir(), 'extensions', 'js_injection_background'))
- ext_id = self.InstallExtension(dir_path, False);
+ ext_id = self.InstallExtension(dir_path)
self.assertTrue(ext_id, msg='Failed to install extension: %s.' % dir_path)
# Verify extension is enabled.

Powered by Google App Engine
This is Rietveld 408576698