Commit 4aa59465 authored by Ulan Degenbaev's avatar Ulan Degenbaev Committed by Commit Bot

[perf] Add browse:social:tumblr_infinite_scroll system health story

Bug: 878390
Change-Id: Ibdaeafbc6d32970641a5a8562125eb15b0bfedf7
Reviewed-on: https://chromium-review.googlesource.com/c/1277659
Commit-Queue: Ulan Degenbaev <ulan@chromium.org>
Reviewed-by: default avatarJuan Antonio Navarro Pérez <perezju@chromium.org>
Cr-Commit-Position: refs/heads/master@{#602346}
parent 2995d5e3
...@@ -38,6 +38,7 @@ _DISABLED_TESTS = frozenset({ ...@@ -38,6 +38,7 @@ _DISABLED_TESTS = frozenset({
# and will later be removed. # and will later be removed.
'system_health.memory_mobile/browse:tech:discourse_infinite_scroll', 'system_health.memory_mobile/browse:tech:discourse_infinite_scroll',
'system_health.memory_mobile/browse:social:facebook_infinite_scroll', 'system_health.memory_mobile/browse:social:facebook_infinite_scroll',
'system_health.memory_mobile/browse:social:tumblr_infinite_scroll',
'system_health.memory_mobile/browse:news:cnn', 'system_health.memory_mobile/browse:news:cnn',
'system_health.memory_mobile/load:news:cnn', 'system_health.memory_mobile/load:news:cnn',
'system_health.memory_mobile/load:tools:stackoverflow', 'system_health.memory_mobile/load:tools:stackoverflow',
...@@ -46,6 +47,7 @@ _DISABLED_TESTS = frozenset({ ...@@ -46,6 +47,7 @@ _DISABLED_TESTS = frozenset({
'system_health.memory_desktop/load_accessibility:media:wikipedia', 'system_health.memory_desktop/load_accessibility:media:wikipedia',
'system_health.memory_desktop/browse:tech:discourse_infinite_scroll', 'system_health.memory_desktop/browse:tech:discourse_infinite_scroll',
'system_health.memory_desktop/browse:social:facebook_infinite_scroll', 'system_health.memory_desktop/browse:social:facebook_infinite_scroll',
'system_health.memory_desktop/browse:social:tumblr_infinite_scroll',
'system_health.memory_desktop/browse:news:flipboard', 'system_health.memory_desktop/browse:news:flipboard',
'system_health.memory_desktop/browse:search:google', 'system_health.memory_desktop/browse:search:google',
'system_health.memory_desktop/browse:news:hackernews', 'system_health.memory_desktop/browse:news:hackernews',
......
...@@ -69,6 +69,9 @@ ...@@ -69,6 +69,9 @@
"browse:social:tumblr_infinite_scroll": { "browse:social:tumblr_infinite_scroll": {
"DEFAULT": "system_health_desktop_056.wprgo" "DEFAULT": "system_health_desktop_056.wprgo"
}, },
"browse:social:tumblr_infinite_scroll:2018": {
"DEFAULT": "system_health_desktop_049d29ed85.wprgo"
},
"browse:social:twitter": { "browse:social:twitter": {
"DEFAULT": "system_health_desktop_053.wprgo" "DEFAULT": "system_health_desktop_053.wprgo"
}, },
......
049d29ed851bce5aae1ff138f747d54f25a21e74
\ No newline at end of file
...@@ -96,6 +96,9 @@ ...@@ -96,6 +96,9 @@
"browse:social:tumblr_infinite_scroll": { "browse:social:tumblr_infinite_scroll": {
"DEFAULT": "system_health_mobile_062.wprgo" "DEFAULT": "system_health_mobile_062.wprgo"
}, },
"browse:social:tumblr_infinite_scroll:2018": {
"DEFAULT": "system_health_mobile_f6eab4101a.wprgo"
},
"browse:social:twitter": { "browse:social:twitter": {
"DEFAULT": "system_health_mobile_023.wprgo" "DEFAULT": "system_health_mobile_023.wprgo"
}, },
......
f6eab4101a26b9b93fab0463dfcf1f9306d58271
\ No newline at end of file
...@@ -1130,6 +1130,18 @@ class TumblrStory(_InfiniteScrollStory): ...@@ -1130,6 +1130,18 @@ class TumblrStory(_InfiniteScrollStory):
TAGS = [story_tags.INFINITE_SCROLL, story_tags.JAVASCRIPT_HEAVY, TAGS = [story_tags.INFINITE_SCROLL, story_tags.JAVASCRIPT_HEAVY,
story_tags.YEAR_2016] story_tags.YEAR_2016]
class TumblrStory2018(_InfiniteScrollStory):
NAME = 'browse:social:tumblr_infinite_scroll:2018'
URL = 'https://techcrunch.tumblr.com/'
TAGS = [story_tags.INFINITE_SCROLL, story_tags.JAVASCRIPT_HEAVY,
story_tags.YEAR_2018]
def _Login(self, action_runner):
tumblr_login.LoginDesktopAccount(action_runner, 'tumblr')
action_runner.Wait(5)
# Without this page reload the mobile version does not correctly
# go to the https://techcrunch.tumblr.com
action_runner.ReloadPage()
class TwitterScrollDesktopStory(_InfiniteScrollStory): class TwitterScrollDesktopStory(_InfiniteScrollStory):
NAME = 'browse:social:twitter_infinite_scroll' NAME = 'browse:social:twitter_infinite_scroll'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment