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

Unified Diff: chrome/test/chromedriver/chrome/chrome.h

Issue 2125123002: [chromedriver] Add page loading strategy to capabilities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clearer naming, checks for valid strategies earlier in parsing Created 4 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
Index: chrome/test/chromedriver/chrome/chrome.h
diff --git a/chrome/test/chromedriver/chrome/chrome.h b/chrome/test/chromedriver/chrome/chrome.h
index a0957dfbaecc18b629e2adfe1d14a3747310fca4..2dd3e831111c5e8b80fbec4a4a6375dd971614d8 100644
--- a/chrome/test/chromedriver/chrome/chrome.h
+++ b/chrome/test/chromedriver/chrome/chrome.h
@@ -47,6 +47,10 @@ class Chrome {
// actions can be performed on it.
virtual bool HasTouchScreen() const = 0;
+ virtual std::string page_load_strategy() const = 0;
+
+ virtual void set_page_load_strategy(std::string strategy) = 0;
+
// Quits Chrome.
virtual Status Quit() = 0;
};

Powered by Google App Engine
This is Rietveld 408576698