blob: ba8fbc1447d15169793e930eb4fce28be1a5955a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright (c) 2012 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.
# The test takes a list of URLs through stdin and prints results in CSV format.
# Example: python run_scroll_test.py < data/urls.txt > test_results.csv
from chrome_remote_control import multi_page_benchmark
from chrome_remote_control import util
class FirstPaintTimeBenchmark(multi_page_benchmark.MultiPageBenchmark):
def MeasurePage(self, _, tab, results):
if tab.browser.is_content_shell:
results.Add('first_paint', 'seconds', 'unsupported')
return
tab.runtime.Execute("""
window.__rafFired = false;
window.webkitRequestAnimationFrame(function() {
window.__rafFired = true;
});
""")
util.WaitFor(lambda: tab.runtime.Evaluate('window.__rafFired'), 60)
first_paint_secs = tab.runtime.Evaluate(
'window.chrome.loadTimes().firstPaintTime - ' +
'window.chrome.loadTimes().requestTime')
results.Add('first_paint', 'seconds', round(first_paint_secs, 1))
def Main():
return multi_page_benchmark.Main(FirstPaintTimeBenchmark())
|