| Index: chrome/test/chromedriver/command_executor_impl.cc
|
| diff --git a/chrome/test/chromedriver/command_executor_impl.cc b/chrome/test/chromedriver/command_executor_impl.cc
|
| index eac1708cdd9097e13e73a40880e0420fc2aaac79..1f5bb191135dc62a1f819bc6f7d31cdf52d2adcb 100644
|
| --- a/chrome/test/chromedriver/command_executor_impl.cc
|
| +++ b/chrome/test/chromedriver/command_executor_impl.cc
|
| @@ -50,9 +50,13 @@ void CommandExecutorImpl::Init() {
|
| command_map_.Set("getTitle", base::Bind(execute_session_command,
|
| base::Bind(&ExecuteGetTitle)));
|
| command_map_.Set("findElement", base::Bind(execute_session_command,
|
| - base::Bind(&ExecuteFindElement)));
|
| + base::Bind(&ExecuteFindElement, 50)));
|
| command_map_.Set("findElements", base::Bind(execute_session_command,
|
| - base::Bind(&ExecuteFindElements)));
|
| + base::Bind(&ExecuteFindElements, 50)));
|
| + command_map_.Set("findChildElement", base::Bind(execute_session_command,
|
| + base::Bind(&ExecuteFindChildElement, 50)));
|
| + command_map_.Set("findChildElements", base::Bind(execute_session_command,
|
| + base::Bind(&ExecuteFindChildElements, 50)));
|
| command_map_.Set("setTimeout", base::Bind(execute_session_command,
|
| base::Bind(&ExecuteSetTimeout)));
|
| Command quit_command = base::Bind(execute_session_command,
|
|
|