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

Unified Diff: chrome/test/functional/process_count.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/process_count.py
diff --git a/chrome/test/functional/process_count.py b/chrome/test/functional/process_count.py
index 20f8e0275419097965d23ee4ee288491c04dc115..3473058c17e600a7bfd044835eb739b601c02b57 100644
--- a/chrome/test/functional/process_count.py
+++ b/chrome/test/functional/process_count.py
@@ -95,8 +95,7 @@ class ProcessCountTest(pyauto.PyUITest):
"""Verifies the process count when an extension is installed."""
crx_file_path = os.path.abspath(
os.path.join(self.DataDir(), 'extensions', 'page_action.crx'))
- self.assertTrue(self.InstallExtension(crx_file_path, False),
- msg='Extension install failed.')
+ self.InstallExtension(crx_file_path)
self._VerifyProcessCount(self.proc_count_fresh_profile + 1)
def testProcessCountCombination(self):
@@ -114,8 +113,7 @@ class ProcessCountTest(pyauto.PyUITest):
self.GetPluginsInfo()
crx_file_path = os.path.abspath(
os.path.join(self.DataDir(), 'extensions', 'page_action.crx'))
- self.assertTrue(self.InstallExtension(crx_file_path, False),
- msg='Extension install failed.')
+ self.InstallExtension(crx_file_path)
for _ in xrange(2):
self.AppendTab(pyauto.GURL('about:blank'), 0)

Powered by Google App Engine
This is Rietveld 408576698