From f7205bdf18dc70bdc1cebdf1b6db87d6f6ec1dae Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Mon, 7 May 2012 19:55:42 -0700 Subject: [PATCH] sad panda. selenium web driver had to update, and clearly some of the behavior around send_key changed :( --- features/step_definitions/custom_web_steps.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/features/step_definitions/custom_web_steps.rb b/features/step_definitions/custom_web_steps.rb index 781b3674e..4c6eb19d9 100644 --- a/features/step_definitions/custom_web_steps.rb +++ b/features/step_definitions/custom_web_steps.rb @@ -134,6 +134,7 @@ end When /^I search for "([^\"]*)"$/ do |search_term| fill_in "q", :with => search_term find_field("q").native.send_key(:enter) + sleep(2) end Then /^the "([^"]*)" field(?: within "([^"]*)")? should be filled with "([^"]*)"$/ do |field, selector, value|