Index: chrome/test/chromedriver/commands.h |
diff --git a/chrome/test/chromedriver/commands.h b/chrome/test/chromedriver/commands.h |
index bef095c51187fd81587e7c7b2a9fa27eadb1177e..e406307ff00b5554850bb27ea378b0abfe5b4e55 100644 |
--- a/chrome/test/chromedriver/commands.h |
+++ b/chrome/test/chromedriver/commands.h |
@@ -72,12 +72,28 @@ Status ExecuteGetTitle( |
// Search for an element on the page, starting from the document root. |
Status ExecuteFindElement( |
+ int interval_ms, |
Session* session, |
const base::DictionaryValue& params, |
scoped_ptr<base::Value>* value); |
// Search for multiple elements on the page, starting from the document root. |
Status ExecuteFindElements( |
+ int interval_ms, |
+ Session* session, |
+ const base::DictionaryValue& params, |
+ scoped_ptr<base::Value>* value); |
+ |
+// Search for an element on the page, starting from the given element. |
+Status ExecuteFindChildElement( |
+ int interval_ms, |
+ Session* session, |
+ const base::DictionaryValue& params, |
+ scoped_ptr<base::Value>* value); |
+ |
+// Search for multiple elements on the page, starting from the given element. |
+Status ExecuteFindChildElements( |
+ int interval_ms, |
Session* session, |
const base::DictionaryValue& params, |
scoped_ptr<base::Value>* value); |