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

Unified Diff: tools/perf/measurements/rasterize_and_record_micro.py

Issue 395133008: [telemetry] rasterize_and_record_micro: Increase timeout for document to load (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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/measurements/rasterize_and_record_micro.py
diff --git a/tools/perf/measurements/rasterize_and_record_micro.py b/tools/perf/measurements/rasterize_and_record_micro.py
index 92f5881e8f5505cf92248cbb5f7cbc243110a717..0ebb3ac3276ac33a659fb822260bab4c4a15bba5 100644
--- a/tools/perf/measurements/rasterize_and_record_micro.py
+++ b/tools/perf/measurements/rasterize_and_record_micro.py
@@ -58,7 +58,7 @@ class RasterizeAndRecordMicro(page_measurement.PageMeasurement):
def MeasurePage(self, page, tab, results):
try:
- tab.WaitForJavaScriptExpression("document.readyState == 'complete'", 10)
+ tab.WaitForJavaScriptExpression("document.readyState == 'complete'", 30)
tonyg 2014/07/17 17:02:02 Good catch. Let's change this to: tab.WaitForDo
gordanac 2014/07/18 09:25:58 Done.
except TimeoutException:
pass
time.sleep(self.options.start_wait_time)
« 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