| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |