blob: 9e11ee46a358f494e2f1b7051b013a892d7ce328 [file] [log] [blame]
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from page_sets.login_helpers import google_login
from telemetry.page import page as page_module
from telemetry.page import shared_page_state
import os
def _DeterministicPerformanceCounters():
with open(os.path.join(os.path.dirname(__file__),
'deterministic_performance_counters.js')) as f:
return f.read()
class GooglePages(page_module.Page):
def __init__(self, url, page_set, shared_page_state_class,
name='', credentials=None):
super(GooglePages, self).__init__(
url=url, page_set=page_set, name=name,
credentials_path='data/credentials.json',
shared_page_state_class=shared_page_state_class)
self.credentials = credentials
self.script_to_evaluate_on_commit = _DeterministicPerformanceCounters()
class GmailPage(GooglePages):
def __init__(self, page_set,
shared_page_state_class=shared_page_state.SharedPageState):
super(GmailPage, self).__init__(
url='https://mail.google.com/mail/',
page_set=page_set,
shared_page_state_class=shared_page_state_class,
name='https://mail.google.com/mail/')
def RunNavigateSteps(self, action_runner):
google_login.LoginGoogleAccount(action_runner, 'google',
self.credentials_path)
super(GmailPage, self).RunNavigateSteps(action_runner)
action_runner.WaitForJavaScriptCondition(
'window.gmonkey !== undefined &&'
'document.getElementById("gb") !== null')