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

Unified Diff: tools/perf/page_sets/system_health/searching_stories.py

Issue 2228103002: [system-health] Add support for disabling individual stories on individual platforms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: tools/perf/page_sets/system_health/searching_stories.py
diff --git a/tools/perf/page_sets/system_health/searching_stories.py b/tools/perf/page_sets/system_health/searching_stories.py
index 96dd713c04b789be0c6aff19ccc2a5b54ef3e20b..19c64a68c2b8c9caae0a267a8dcdc63c3d0f0c90 100644
--- a/tools/perf/page_sets/system_health/searching_stories.py
+++ b/tools/perf/page_sets/system_health/searching_stories.py
@@ -2,15 +2,15 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from page_sets.system_health import platforms
from page_sets.system_health import system_health_story
+from telemetry import decorators
+
+@decorators.Disabled('win') # http://crbug.com/642463
class SearchGoogleStory(system_health_story.SystemHealthStory):
NAME = 'search:portal:google'
URL = 'https://www.google.co.uk/'
- # Tap simulation doesn't fully work on Windows. http://crbug.com/634343
- SUPPORTED_PLATFORMS = platforms.MOBILE_ONLY
_SEARCH_BOX_SELECTOR = 'input[aria-label="Search"]'
_RESULT_SELECTOR = '.r > a[href*="wikipedia"]'

Powered by Google App Engine
This is Rietveld 408576698