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

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

Issue 11884058: [chromedriver] Implement commands: findChildElement, findChildElements. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 11 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 | « chrome/test/chromedriver/command_executor_impl.cc ('k') | chrome/test/chromedriver/commands.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/commands.h
diff --git a/chrome/test/chromedriver/commands.h b/chrome/test/chromedriver/commands.h
index 3d19841620b731ab78706c7b65404d8e1d6a1080..4f2fa6e5768d5725367542d7d4f24744fc8c7f79 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);
« no previous file with comments | « chrome/test/chromedriver/command_executor_impl.cc ('k') | chrome/test/chromedriver/commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698