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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
// Copyright (c) 2013 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_CHROMEDRIVER_ELEMENT_COMMANDS_H_
#define CHROME_TEST_CHROMEDRIVER_ELEMENT_COMMANDS_H_
#include <string>
#include "base/callback_forward.h"
#include "base/memory/scoped_ptr.h"
namespace base {
class DictionaryValue;
class Value;
}
struct Session;
class Status;
class WebView;
typedef base::Callback<Status(
Session* session,
WebView* web_view,
const std::string&,
const base::DictionaryValue&,
scoped_ptr<base::Value>*)> ElementCommand;
// Execute a command on a specific element.
Status ExecuteElementCommand(
const ElementCommand& command,
Session* session,
WebView* web_view,
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,
WebView* web_view,
const std::string& element_id,
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,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Move the mouse to the given element.
Status ExecuteHoverOverElement(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Click on the element.
Status ExecuteClickElement(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Touch click on the element.
Status ExecuteTouchSingleTap(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Double tap on the element.
Status ExecuteTouchDoubleTap(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Long press on the element.
Status ExecuteTouchLongPress(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Touch flick starting on the element.
Status ExecuteFlick(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Clear a TEXTAREA or text INPUT element's value.
Status ExecuteClearElement(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Send a sequence of key strokes to an element.
Status ExecuteSendKeysToElement(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Submit a form element.
Status ExecuteSubmitElement(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Returns the text of a given element.
Status ExecuteGetElementText(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Returns the value of a given element.
Status ExecuteGetElementValue(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Returns the lower case tag name of a given element.
Status ExecuteGetElementTagName(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
Status ExecuteIsElementSelected(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
Status ExecuteIsElementEnabled(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
Status ExecuteIsElementDisplayed(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Returns the location of a given element in page coordinates.
Status ExecuteGetElementLocation(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Returns the location of a given element in client coordinates, after
// scrolling it into view.
Status ExecuteGetElementLocationOnceScrolledIntoView(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
Status ExecuteGetElementSize(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
Status ExecuteGetElementAttribute(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Returns the effective style for a given property of the specified element.
Status ExecuteGetElementValueOfCSSProperty(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
// Returns whether the two given elements are equivalent.
Status ExecuteElementEquals(
Session* session,
WebView* web_view,
const std::string& element_id,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
#endif // CHROME_TEST_CHROMEDRIVER_ELEMENT_COMMANDS_H_
|