blob: b30c05141fdd3536c166dc25fb792e2f9835578d [file] [log] [blame]
# Copyright 2013 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 telemetry.internal.backends import\
form_based_credentials_backend_unittest_base
from telemetry.internal.backends import google_credentials_backend
class TestGoogleCredentialsBackend(
form_based_credentials_backend_unittest_base.
FormBasedCredentialsBackendUnitTestBase):
def setUp(self):
self._credentials_type = 'google'
def testLoginUsingMock(self):
backend = google_credentials_backend.GoogleCredentialsBackend()
self._LoginUsingMock(backend, backend.url, backend.login_input_id,
backend.password_input_id, backend.login_form_id,
backend.logged_in_javascript)