diff options
-rw-r--r-- | tools/perf/perf_tools/jsgamebench.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/perf_tools/jsgamebench.py b/tools/perf/perf_tools/jsgamebench.py index d311f2c..343b1a0 100644 --- a/tools/perf/perf_tools/jsgamebench.py +++ b/tools/perf/perf_tools/jsgamebench.py @@ -12,7 +12,7 @@ class JsGameBench(multi_page_benchmark.MultiPageBenchmark): js_is_done = 'document.getElementById("perfscore0") != null' def _IsDone(): return bool(tab.runtime.Evaluate(js_is_done)) - util.WaitFor(_IsDone, 600) + util.WaitFor(_IsDone, 900) js_get_results = 'document.getElementById("perfscore0").innerHTML' result = int(tab.runtime.Evaluate(js_get_results)) |