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

Unified Diff: tools/perf/core/about_tracing_integration_test.py

Issue 2206563002: Revert of [tools/perf] Add integration test for about://tracing UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/core/about_tracing_integration_test.py
diff --git a/tools/perf/core/about_tracing_integration_test.py b/tools/perf/core/about_tracing_integration_test.py
deleted file mode 100644
index c62b71ad346e3d91d78ac3b338e42a6a3d2de201..0000000000000000000000000000000000000000
--- a/tools/perf/core/about_tracing_integration_test.py
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-from telemetry import decorators
-from telemetry.testing import tab_test_case
-
-
-class AboutTracingIntegrationTest(tab_test_case.TabTestCase):
-
- @decorators.Disabled('android',
- 'win') # crbug.com/630030
- def testBasicTraceRecording(self):
- action_runner = self._tab.action_runner
- action_runner.Navigate('chrome://tracing')
-
- # Click 'record' to trigger record selection diaglog.
- action_runner.WaitForElement(selector='#record-button')
- action_runner.ClickElement(selector='#record-button')
-
- # Wait for record selection diaglog to pop up, then click record.
- action_runner.WaitForElement(selector='.overlay')
- action_runner.ClickElement(
- element_function=("document.querySelector('.overlay').shadowRoot."
- "querySelectorAll('button')[0]"))
-
- # Stop recording after 1 seconds.
- action_runner.Wait(1)
- action_runner.ClickElement(
- element_function=
- "document.querySelector('.overlay').querySelector('button')")
-
- # Make sure that we can see the browser track.
- action_runner.WaitForElement(selector='div[title~="Browser"]')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698