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

Unified Diff: tools/perf/benchmarks/blink_perf.py

Issue 2719853003: [Telemetry refactor] Drop "2" from method calls to JS API (Closed)
Patch Set: Created 3 years, 10 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 | « tools/chrome_proxy/live_tests/chrome_proxy_metrics.py ('k') | tools/perf/benchmarks/dromaeo.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/blink_perf.py
diff --git a/tools/perf/benchmarks/blink_perf.py b/tools/perf/benchmarks/blink_perf.py
index 743656c35bfeb16e19f53598e586f5efe2a4a779..7b43df3286bd316e2fb4e03de2623890277fd8aa 100644
--- a/tools/perf/benchmarks/blink_perf.py
+++ b/tools/perf/benchmarks/blink_perf.py
@@ -97,9 +97,9 @@ class _BlinkPerfMeasurement(legacy_page_test.LegacyPageTest):
options.AppendExtraBrowserArgs('--expose-internals-for-testing')
def ValidateAndMeasurePage(self, page, tab, results):
- tab.WaitForJavaScriptCondition2('testRunner.isDone', timeout=600)
+ tab.WaitForJavaScriptCondition('testRunner.isDone', timeout=600)
- log = tab.EvaluateJavaScript2('document.getElementById("log").innerHTML')
+ log = tab.EvaluateJavaScript('document.getElementById("log").innerHTML')
for line in log.splitlines():
if line.startswith("FATAL: "):
« no previous file with comments | « tools/chrome_proxy/live_tests/chrome_proxy_metrics.py ('k') | tools/perf/benchmarks/dromaeo.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698