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

Unified Diff: chrome/test/chromedriver/element_commands.cc

Issue 15859013: [chromedriver] Stop supporting chrome 26. Don't run tests against it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove file upload check Created 7 years, 7 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
« no previous file with comments | « chrome/test/chromedriver/chrome/version.cc ('k') | chrome/test/chromedriver/run_all_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/element_commands.cc
diff --git a/chrome/test/chromedriver/element_commands.cc b/chrome/test/chromedriver/element_commands.cc
index d1620a88a5dc1e7dcc6e992178c06445d2ca4577..b3e313cb3c25196f347bfca101dfba3cf714d1da 100644
--- a/chrome/test/chromedriver/element_commands.cc
+++ b/chrome/test/chromedriver/element_commands.cc
@@ -217,16 +217,6 @@ Status ExecuteSendKeysToElement(
if (status.IsError())
return status;
if (is_input && is_file) {
- // File upload is only supported for chrome 27+.
- if (session->chrome->GetBuildNo() < 1420) {
- return Status(
- kUnknownError,
- base::StringPrintf(
- "file upload requires chrome 27+, build 1420+,"
- "while current one is %s",
- session->chrome->GetVersion().c_str()));
- }
-
// Compress array into a single string.
base::FilePath::StringType paths_string;
for (size_t i = 0; i < key_list->GetSize(); ++i) {
« no previous file with comments | « chrome/test/chromedriver/chrome/version.cc ('k') | chrome/test/chromedriver/run_all_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698