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

Unified Diff: tools/perf/page_sets/google_pages.py

Issue 2884253002: Remove v8.google benchmark (Closed)
Patch Set: Created 3 years, 7 months 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 | « tools/perf/page_sets/data/v8_pages_000.wpr.sha1 ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/google_pages.py
diff --git a/tools/perf/page_sets/google_pages.py b/tools/perf/page_sets/google_pages.py
index abdb76a6cd71f073a55187f7388c2d44bc3fdcdd..6fb0ef41da5e53e409c4cec4f9e7ab2ec7f393fc 100644
--- a/tools/perf/page_sets/google_pages.py
+++ b/tools/perf/page_sets/google_pages.py
@@ -6,7 +6,6 @@ from page_sets.login_helpers import google_login
from telemetry.page import page as page_module
from telemetry.page import shared_page_state
-from telemetry.util import js_template
import os
@@ -58,25 +57,3 @@ class GoogleDocPage(GooglePages):
action_runner.Wait(2)
action_runner.WaitForJavaScriptCondition(
'document.getElementsByClassName("kix-appview-editor").length')
-
-
-INTERACTION_NAME = 'Interaction.AppLoad'
-class AdwordCampaignDesktopPage(page_module.Page):
- def __init__(self, page_set):
- super(AdwordCampaignDesktopPage, self).__init__(
- url='https://adwords.google.com/cm/CampaignMgmt',
- page_set=page_set, name='AdwordsCampaign',
- credentials_path='data/credentials.json',
- shared_page_state_class=shared_page_state.SharedDesktopPageState)
- self.script_to_evaluate_on_commit = js_template.Render(
- 'console.time({{ label }});', label=INTERACTION_NAME)
-
- def RunNavigateSteps(self, action_runner):
- google_login.LoginGoogleAccount(action_runner, 'google3',
- self.credentials_path)
- super(AdwordCampaignDesktopPage, self).RunNavigateSteps(action_runner)
-
- def RunPageInteractions(self, action_runner):
- action_runner.WaitForElement(text='Welcome to AdWords!')
- action_runner.ExecuteJavaScript(
- 'console.timeEnd({{ label }});', label=INTERACTION_NAME)
« no previous file with comments | « tools/perf/page_sets/data/v8_pages_000.wpr.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698