Commit 861a6d67 authored by melandory's avatar melandory Committed by Commit bot

[Password manager tests automation] Tests for liveinternet.ru

Adding test for Liveinternet. Test passes.
Credential description string: test account for liveinternet.ru

BUG=369521
R=vabr@chromium.org

Review URL: https://codereview.chromium.org/991283002

Cr-Commit-Position: refs/heads/master@{#319888}
parent a6038c8b
...@@ -55,6 +55,15 @@ class Google(WebsiteTest): ...@@ -55,6 +55,15 @@ class Google(WebsiteTest):
self.Submit("#Passwd") self.Submit("#Passwd")
class Liveinternet(WebsiteTest):
def Login(self):
self.GoTo("http://liveinternet.ru/journals.php?s=&action1=login")
self.FillUsernameInto("[name='username']")
self.FillPasswordInto("[name='password']")
self.Submit("[name='password']")
class Linkedin(WebsiteTest): class Linkedin(WebsiteTest):
def Login(self): def Login(self):
...@@ -280,6 +289,7 @@ def Tests(environment, tests_to_run=None): ...@@ -280,6 +289,7 @@ def Tests(environment, tests_to_run=None):
"alexa": Alexa("alexa"), "alexa": Alexa("alexa"),
"facebook": Facebook("facebook"), "facebook": Facebook("facebook"),
"google": Google("google"), "google": Google("google"),
"liveinternet": Liveinternet("liveinternet"),
"linkedin": Linkedin("linkedin"), "linkedin": Linkedin("linkedin"),
"mailru": Mailru("mailru"), "mailru": Mailru("mailru"),
"nytimes": Nytimes("nytimes"), "nytimes": Nytimes("nytimes"),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment