diff options
author | melandory <melandory@chromium.org> | 2015-04-13 03:42:31 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-13 10:43:03 +0000 |
commit | 412d9727226e5f88a52828b950c70d84d14444b0 (patch) | |
tree | 3fda16e97cdda707f2d5a2b667db2e09b55f5df8 /components | |
parent | 594e7f575df67f71279927d266fd6d711f9c1c16 (diff) | |
download | chromium_src-412d9727226e5f88a52828b950c70d84d14444b0.zip chromium_src-412d9727226e5f88a52828b950c70d84d14444b0.tar.gz chromium_src-412d9727226e5f88a52828b950c70d84d14444b0.tar.bz2 |
[Password manager tests automation] Tests for buzzfeed.com
Adding test for Buzzfeed (buzzfeed.com). Test fails, probably because of chrome
crashes.
BUG=369521
R=vabr@chromium.org
Review URL: https://codereview.chromium.org/1073163002
Cr-Commit-Position: refs/heads/master@{#324830}
Diffstat (limited to 'components')
-rw-r--r-- | components/test/data/password_manager/automated_tests/tests.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/components/test/data/password_manager/automated_tests/tests.py b/components/test/data/password_manager/automated_tests/tests.py index d48a97d..b34aef9 100644 --- a/components/test/data/password_manager/automated_tests/tests.py +++ b/components/test/data/password_manager/automated_tests/tests.py @@ -283,6 +283,15 @@ class Baidu(WebsiteTest): self.FillPasswordInto("[name='password']") self.Submit("[name='password']") +# Chrome crashes. +class Buzzfeed(WebsiteTest): + + def Login(self): + self.GoTo("http://www.buzzfeed.com/signin") + self.FillUsernameInto("#login-username") + self.FillPasswordInto("#login-password") + self.Submit("#login-password") + # http://crbug.com/368690 class Cnn(WebsiteTest): @@ -441,6 +450,7 @@ all_tests = { "amazon": Amazon("amazon"), # Bug not reproducible without test. "ask": Ask("ask"), # Password not saved. "baidu": Baidu("baidu"), # Password not saved. + "buzzfeed": Buzzfeed("buzzfeed"), "cnn": Cnn("cnn"), # http://crbug.com/368690 "craigslist": Craigslist("craigslist"), # Too many failed logins per time. "dailymotion": Dailymotion("dailymotion"), # Crashes. |