From 412d9727226e5f88a52828b950c70d84d14444b0 Mon Sep 17 00:00:00 2001 From: melandory Date: Mon, 13 Apr 2015 03:42:31 -0700 Subject: [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} --- components/test/data/password_manager/automated_tests/tests.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'components') 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. -- cgit v1.1