Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: tools/perf/page_sets/system_health/loading_stories.py

Issue 2162473002: [system health] Add desktop browsing story for facebook and change url of twitter story. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: record wpr, disable facebook Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/perf/page_sets/system_health/browsing_stories.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from page_sets.system_health import platforms 5 from page_sets.system_health import platforms
6 from page_sets.system_health import system_health_story 6 from page_sets.system_health import system_health_story
7 7
8 from page_sets.login_helpers import dropbox_login 8 from page_sets.login_helpers import dropbox_login
9 from page_sets.login_helpers import google_login 9 from page_sets.login_helpers import google_login
10 10
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 69
70 70
71 class LoadFacebookStory(_LoadingStory): 71 class LoadFacebookStory(_LoadingStory):
72 # Using Facebook login often causes "404 Not Found" with WPR. 72 # Using Facebook login often causes "404 Not Found" with WPR.
73 NAME = 'load:social:facebook' 73 NAME = 'load:social:facebook'
74 URL = 'https://www.facebook.com/rihanna' 74 URL = 'https://www.facebook.com/rihanna'
75 75
76 76
77 class LoadTwitterStory(_LoadingStory): 77 class LoadTwitterStory(_LoadingStory):
78 NAME = 'load:social:twitter' 78 NAME = 'load:social:twitter'
79 URL = 'https://www.twitter.com/justinbieber?skip_interstitial=true' 79 URL = 'https://www.twitter.com/nasa'
80 80
81 81
82 class LoadVkStory(_LoadingStory): 82 class LoadVkStory(_LoadingStory):
83 NAME = 'load:social:vk' 83 NAME = 'load:social:vk'
84 URL = 'https://vk.com/sbeatles' 84 URL = 'https://vk.com/sbeatles'
85 # Due to the deterministic date injected by WPR (February 2008), the cookie 85 # Due to the deterministic date injected by WPR (February 2008), the cookie
86 # set by https://vk.com immediately expires, so the page keeps refreshing 86 # set by https://vk.com immediately expires, so the page keeps refreshing
87 # indefinitely on mobile 87 # indefinitely on mobile
88 # (see https://github.com/chromium/web-page-replay/issues/71). 88 # (see https://github.com/chromium/web-page-replay/issues/71).
89 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY 89 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 URL = 'http://www.miniclip.com/games/en/' 357 URL = 'http://www.miniclip.com/games/en/'
358 # Desktop only (requires Flash). 358 # Desktop only (requires Flash).
359 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY 359 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY
360 360
361 361
362 class LoadAlphabettyStory(_LoadingStory): 362 class LoadAlphabettyStory(_LoadingStory):
363 NAME = 'load:games:alphabetty' 363 NAME = 'load:games:alphabetty'
364 URL = 'https://king.com/play/alphabetty' 364 URL = 'https://king.com/play/alphabetty'
365 # Desktop only (requires Flash). 365 # Desktop only (requires Flash).
366 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY 366 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY
OLDNEW
« no previous file with comments | « tools/perf/page_sets/system_health/browsing_stories.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698