blob: a9f3fa209c974a73351d6515b3cf0dc9e0abb1ac (
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
|
// 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.
#ifndef CHROME_TEST_WEBDRIVER_COMMANDS_EXECUTE_COMMAND_H_
#define CHROME_TEST_WEBDRIVER_COMMANDS_EXECUTE_COMMAND_H_
#include <string>
#include <vector>
#include "chrome/test/webdriver/commands/webdriver_command.h"
namespace webdriver {
class Response;
// Inject a snippet of javascript into the page and return its result.
// WebElements that should be passed to the script as an argument should be
// specified in the arguments array as WebElement JSON arguments. Likewise,
// any WebElements in the script result will be returned to the client as
// WebElement JSON objects. See:
// http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/execute
class ExecuteCommand : public WebDriverCommand {
public:
ExecuteCommand(const std::vector<std::string>& path_segments,
const DictionaryValue* const parameters);
virtual ~ExecuteCommand();
virtual bool DoesPost();
virtual void ExecutePost(Response* const response);
private:
virtual bool RequiresValidTab();
DISALLOW_COPY_AND_ASSIGN(ExecuteCommand);
};
} // namespace webdriver
#endif // CHROME_TEST_WEBDRIVER_COMMANDS_EXECUTE_COMMAND_H_
|