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
|
// Copyright (c) 2011 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/find_element_commands.h"
#include "base/values.h"
#include "chrome/test/webdriver/commands/response.h"
#include "chrome/test/webdriver/error_codes.h"
#include "chrome/test/webdriver/session.h"
#include "chrome/test/webdriver/web_element_id.h"
namespace webdriver {
FindElementCommand::FindElementCommand(
const std::vector<std::string>& path_segments,
const DictionaryValue* const parameters,
const bool find_one_element)
: WebDriverCommand(path_segments, parameters),
find_one_element_(find_one_element) {}
FindElementCommand::~FindElementCommand() {}
bool FindElementCommand::DoesPost() {
return true;
}
void FindElementCommand::ExecutePost(Response* const response) {
std::string locator, query;
if (!GetStringParameter("using", &locator) ||
!GetStringParameter("value", &query)) {
SET_WEBDRIVER_ERROR(response,
"Request is missing required 'using' and/or 'value' data", kBadRequest);
return;
}
// TODO(jmikhail): The findElement(s) atom should handle this conversion.
if (locator == "class name") {
locator = LocatorType::kClassName;
} else if (locator == "link text") {
locator = LocatorType::kLinkText;
} else if (locator == "partial link text") {
locator = LocatorType::kPartialLinkText;
} else if (locator == "tag name") {
locator = LocatorType::kTagName;
}
// The other locators do not need conversion. If the client supplied an
// invalid locator, let it fail in the atom.
// Searching under a custom root if the URL pattern is
// "/session/$session/element/$id/element(s)"
WebElementId root_element(GetPathVariable(4));
ErrorCode code = kUnknownError;
if (find_one_element_) {
WebElementId element;
code = session_->FindElement(root_element, locator, query, &element);
if (code == kSuccess)
response->SetValue(element.ToValue());
} else {
std::vector<WebElementId> elements;
code = session_->FindElements(root_element, locator, query, &elements);
if (code == kSuccess) {
ListValue* element_list = new ListValue();
for (size_t i = 0; i < elements.size(); ++i)
element_list->Append(elements[i].ToValue());
response->SetValue(element_list);
}
}
response->SetStatus(code);
}
} // namespace webdriver
|