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

Unified Diff: chrome/test/functional/ntp.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/ntp.py
diff --git a/chrome/test/functional/ntp.py b/chrome/test/functional/ntp.py
index 3086ee6df285fcb985784fa582f0bd0c09cb7622..b0344af6f72114a3983360272f514156d81ef52b 100644
--- a/chrome/test/functional/ntp.py
+++ b/chrome/test/functional/ntp.py
@@ -405,11 +405,10 @@ class NTPTest(pyauto.PyUITest):
# Install a regular extension and a theme.
ext_crx_file = os.path.abspath(os.path.join(self.DataDir(), 'extensions',
'page_action.crx'))
- self.assertTrue(self.InstallExtension(ext_crx_file, False),
- msg='Extension install failed.')
+ self.InstallExtension(ext_crx_file)
theme_crx_file = os.path.abspath(os.path.join(self.DataDir(), 'extensions',
'theme.crx'))
- self.assertTrue(self.SetTheme(theme_crx_file), msg='Theme install failed.')
+ self.SetTheme(theme_crx_file)
# Verify that no apps are listed on the NTP except for the Web Store.
app_info = self.GetNTPApps()
self._VerifyAppInfo(app_info, self._EXPECTED_DEFAULT_APPS)

Powered by Google App Engine
This is Rietveld 408576698