| Index: components/test/data/password_manager/automated_tests/tests.py
|
| diff --git a/components/test/data/password_manager/automated_tests/tests.py b/components/test/data/password_manager/automated_tests/tests.py
|
| index 52a62790f6c2383901286cc9e9f1ba838cd53d0a..0472856f295cf7023f526e103b626aa84d8a8f48 100644
|
| --- a/components/test/data/password_manager/automated_tests/tests.py
|
| +++ b/components/test/data/password_manager/automated_tests/tests.py
|
| @@ -28,6 +28,15 @@ class TypeOfTestedWebsites:
|
| pass
|
|
|
|
|
| +class Alexa(WebsiteTest):
|
| +
|
| + def Login(self):
|
| + self.GoTo("https://www.alexa.com/secure/login")
|
| + self.FillUsernameInto("#email")
|
| + self.FillPasswordInto("#pwd")
|
| + self.Submit("#pwd")
|
| +
|
| +
|
| class Facebook(WebsiteTest):
|
|
|
| def Login(self):
|
| @@ -268,6 +277,7 @@ class Vube(WebsiteTest):
|
| def Tests(environment, tests_to_run=None):
|
|
|
| working_tests = {
|
| + "alexa": Alexa("alexa"),
|
| "facebook": Facebook("facebook"),
|
| "google": Google("google"),
|
| "linkedin": Linkedin("linkedin"),
|
|
|