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

Unified Diff: chrome/test/webdriver/webdriver_capabilities_parser_unittest.cc

Issue 11818029: [chromedriver] Remove support for simulating OS-level key events. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 11 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/webdriver/webdriver_capabilities_parser.cc ('k') | chrome/test/webdriver/webdriver_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/webdriver_capabilities_parser_unittest.cc
diff --git a/chrome/test/webdriver/webdriver_capabilities_parser_unittest.cc b/chrome/test/webdriver/webdriver_capabilities_parser_unittest.cc
index 2f7457deb8e2e66b406ef68da544c697ca55ff88..3760a0f12edad97d738f512c8c4b182e93a529cf 100644
--- a/chrome/test/webdriver/webdriver_capabilities_parser_unittest.cc
+++ b/chrome/test/webdriver/webdriver_capabilities_parser_unittest.cc
@@ -35,7 +35,6 @@ TEST(CapabilitiesParser, SimpleCaps) {
options->SetString("channel", "channel");
options->SetBoolean("detach", true);
options->SetBoolean("loadAsync", true);
- options->SetBoolean("nativeEvents", true);
Capabilities caps;
base::ScopedTempDir temp_dir;
@@ -46,7 +45,6 @@ TEST(CapabilitiesParser, SimpleCaps) {
EXPECT_STREQ("channel", caps.channel.c_str());
EXPECT_TRUE(caps.detach);
EXPECT_TRUE(caps.load_async);
- EXPECT_TRUE(caps.native_events);
}
TEST(CapabilitiesParser, Args) {
« no previous file with comments | « chrome/test/webdriver/webdriver_capabilities_parser.cc ('k') | chrome/test/webdriver/webdriver_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698