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

Unified Diff: chrome/test/webdriver/commands/command.h

Issue 6482014: Implement sendKeys webdriver API in ChromeDriver. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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/webdriver/automation.cc ('k') | chrome/test/webdriver/commands/command.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/commands/command.h
===================================================================
--- chrome/test/webdriver/commands/command.h (revision 74647)
+++ chrome/test/webdriver/commands/command.h (working copy)
@@ -74,6 +74,10 @@
// false if there is no such parameter, or if it is not a int.
bool GetIntegerParameter(const std::string& key, int* out) const;
+ // Returns the command parameter with the given |key| as a list. Returns
+ // false if there is no such parameter, or if it is not a list.
+ bool GetListParameter(const std::string& key, ListValue** out) const;
+
private:
const std::vector<std::string> path_segments_;
const scoped_ptr<const DictionaryValue> parameters_;
« no previous file with comments | « chrome/test/webdriver/automation.cc ('k') | chrome/test/webdriver/commands/command.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698