| 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 from telemetry import decorators | 4 from telemetry import decorators |
| 5 from telemetry.testing import tab_test_case | 5 from telemetry.testing import tab_test_case |
| 6 | 6 |
| 7 | 7 |
| 8 class AboutTracingIntegrationTest(tab_test_case.TabTestCase): | 8 class AboutTracingIntegrationTest(tab_test_case.TabTestCase): |
| 9 | 9 |
| 10 @decorators.Disabled('android', | 10 @decorators.Disabled('android', |
| 11 'win') # https://crbug.com/632871 | 11 'win') # https://crbug.com/632871 |
| 12 def testBasicTraceRecording(self): | 12 def testBasicTraceRecording(self): |
| 13 action_runner = self._tab.action_runner | 13 action_runner = self._tab.action_runner |
| 14 action_runner.Navigate('chrome://tracing') | 14 action_runner.Navigate('chrome://tracing') |
| 15 record_button_js = ( |
| 16 "document.querySelector('tr-ui-timeline-view').shadowRoot." |
| 17 "querySelector('#record-button')") |
| 15 | 18 |
| 16 # Click 'record' to trigger record selection diaglog. | 19 # Click 'record' to trigger record selection diaglog. |
| 17 action_runner.WaitForElement(selector='#record-button') | 20 action_runner.WaitForElement(element_function=record_button_js) |
| 18 action_runner.ClickElement(selector='#record-button') | 21 action_runner.ClickElement(element_function=record_button_js) |
| 19 | 22 |
| 20 # Wait for record selection diaglog to pop up, then click record. | 23 # Wait for record selection diaglog to pop up, then click record. |
| 21 action_runner.WaitForElement(selector='.overlay') | 24 action_runner.WaitForElement(selector='.overlay') |
| 22 action_runner.ClickElement( | 25 action_runner.ClickElement( |
| 23 element_function=("document.querySelector('.overlay').shadowRoot." | 26 element_function=("document.querySelector('.overlay').shadowRoot." |
| 24 "querySelectorAll('button')[0]")) | 27 "querySelectorAll('button')[0]")) |
| 25 | 28 |
| 26 # Stop recording after 1 seconds. | 29 # Stop recording after 1 seconds. |
| 27 action_runner.Wait(1) | 30 action_runner.Wait(1) |
| 28 action_runner.ClickElement( | 31 action_runner.ClickElement( |
| 29 element_function= | 32 element_function= |
| 30 "document.querySelector('.overlay').querySelector('button')") | 33 "document.querySelector('.overlay').querySelector('button')") |
| 31 | 34 |
| 32 # Make sure that we can see the browser track. | 35 # Make sure that we can see the browser track. |
| 33 action_runner.WaitForElement(selector='div[title~="Browser"]') | 36 action_runner.WaitForElement(selector='div[title~="Browser"]') |
| OLD | NEW |