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
|
// 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/webdriver_element_id.h"
#include "chrome/test/webdriver/webdriver_error.h"
#include "chrome/test/webdriver/webdriver_session.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)) {
response->SetError(new Error(
kBadRequest,
"Request is missing required 'using' and/or 'value' data"));
return;
}
if (locator == "class name") {
locator = LocatorType::kClassName;
} else if (locator == "css selector") {
locator = LocatorType::kCss;
} 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)"
ElementId root_element(GetPathVariable(4));
if (find_one_element_) {
ElementId element;
Error* error = session_->FindElement(
session_->current_target(), root_element, locator, query, &element);
if (error) {
response->SetError(error);
return;
}
response->SetValue(element.ToValue());
} else {
std::vector<ElementId> elements;
Error* error = session_->FindElements(
session_->current_target(), root_element, locator, query, &elements);
if (error) {
response->SetError(error);
return;
}
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(kSuccess);
}
} // namespace webdriver
|