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

Unified Diff: tools/perf/profile_creators/small_profile_creator.py

Issue 23478017: [Telemetry] Work around crbug.com/280750 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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/profile_creators/small_profile_creator.py
diff --git a/tools/perf/profile_creators/small_profile_creator.py b/tools/perf/profile_creators/small_profile_creator.py
index 26b1baffdb801c789019606f236720d592a6a85d..f03b39eebcbf788752bfbc0508d8976f18d2e567 100644
--- a/tools/perf/profile_creators/small_profile_creator.py
+++ b/tools/perf/profile_creators/small_profile_creator.py
@@ -21,4 +21,7 @@ class SmallProfileCreator(profile_creator.ProfileCreator):
def MeasurePage(self, _, tab, results):
# Multiple tabs would help make this faster, but that can't be done until
# crbug.com/258113 is fixed.
- tab.WaitForDocumentReadyStateToBeComplete()
+
+ # Can't use WaitForDocumentReadyStateToBeComplete() here due to
+ # crbug.com/280750 .
+ tab.WaitForDocumentReadyStateToBeInteractiveOrBetter()
« 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