Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4417)

Unified Diff: chrome/test/webdriver/commands/find_element_commands.cc

Issue 23526047: Delete old chromedriver code, and remove mongoose webserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/webdriver/commands/find_element_commands.cc
diff --git a/chrome/test/webdriver/commands/find_element_commands.cc b/chrome/test/webdriver/commands/find_element_commands.cc
deleted file mode 100644
index 9ca3568006e672942f746390e22e00f2c110a860..0000000000000000000000000000000000000000
--- a/chrome/test/webdriver/commands/find_element_commands.cc
+++ /dev/null
@@ -1,81 +0,0 @@
-// 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
« no previous file with comments | « chrome/test/webdriver/commands/find_element_commands.h ('k') | chrome/test/webdriver/commands/html5_location_commands.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698