blob: b94741702a9060a9515e0e61e6459042d08fa3a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/test/webdriver/commands/execute_command.h"
#include <string>
#include "base/values.h"
#include "chrome/test/webdriver/error_codes.h"
#include "chrome/test/webdriver/session.h"
#include "chrome/test/webdriver/commands/response.h"
namespace webdriver {
const char kArgs[] = "args";
const char kScript[] = "script";
ExecuteCommand::ExecuteCommand(const std::vector<std::string>& path_segments,
const DictionaryValue* const parameters)
: WebDriverCommand(path_segments, parameters) {}
ExecuteCommand::~ExecuteCommand() {}
bool ExecuteCommand::DoesPost() {
return true;
}
void ExecuteCommand::ExecutePost(Response* const response) {
std::string script;
if (!GetStringParameter(kScript, &script)) {
SET_WEBDRIVER_ERROR(response, "No script to execute specified",
kBadRequest);
return;
}
ListValue* args;
if (!GetListParameter(kArgs, &args)) {
SET_WEBDRIVER_ERROR(response, "No script arguments specified",
kBadRequest);
return;
}
Value* result = NULL;
ErrorCode status = session_->ExecuteScript(script, args, &result);
response->set_status(status);
response->set_value(result);
}
bool ExecuteCommand::RequiresValidTab() {
return true;
}
} // namspace webdriver
|