| Index: tools/perf/page_sets/system_health/browsing_stories.py
|
| diff --git a/tools/perf/page_sets/system_health/browsing_stories.py b/tools/perf/page_sets/system_health/browsing_stories.py
|
| index 388e0ee5c3ea0c46d6988163c40715dbe8192216..aea85ac442a58498959f894e6c6667988e2a3632 100644
|
| --- a/tools/perf/page_sets/system_health/browsing_stories.py
|
| +++ b/tools/perf/page_sets/system_health/browsing_stories.py
|
| @@ -107,6 +107,23 @@ class FacebookDesktopStory(_NewsBrowsingStory):
|
| SUPPORTED_PLATFORMS = platforms.NO_PLATFORMS
|
|
|
|
|
| +class FlipboardMobileStory(_NewsBrowsingStory):
|
| + NAME = 'browse:news:flipboard'
|
| + URL = 'https://flipboard.com/explore'
|
| + IS_SINGLE_PAGE_APP = True
|
| + ITEM_SELECTOR = '.grad-top'
|
| + ITEM_SCROLL_REPEAT = 4
|
| + SUPPORTED_PLATFORMS = platforms.MOBILE_ONLY
|
| +
|
| +
|
| +class FlipboardDesktopStory(_NewsBrowsingStory):
|
| + NAME = 'browse:news:flipboard'
|
| + URL = 'https://flipboard.com/explore'
|
| + IS_SINGLE_PAGE_APP = True
|
| + ITEM_SELECTOR = '.cover-image'
|
| + SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY
|
| +
|
| +
|
| class HackerNewsStory(_NewsBrowsingStory):
|
| NAME = 'browse:news:hackernews'
|
| URL = 'https://news.ycombinator.com'
|
|
|