I've recently decided to switch from using watir to using watir-webdriver for my test scripts. It's working great with the exception of this odd behavior. When it comes to a form with multiple text fields, such as a first name field and a last name field, it fills these in incorrectly. It usually fills in the first name and then fills in a letter or two of the last name, then jumps back to the first name field and appends the rest of the last name onto the first name.
An example would be first name/last name text fields. I write the script to fill in Jim for the first name and Johnson for the last name. When I run the script I will end up with Jimhnson for the first name and Jo for the last name. It's like it decides to jump back to the first name field in the middle of the last name field. This is something I never experienced using Watir and have searched all around for similar instances but have had no luck. Hopefully someone can help. Here's a sample of the code I'm using. I don't want to use "sleep 1", but have found it's the only thing that prevents this odd behavior.
def fill_in_applicant_name(fName, lName)
puts "Fills in the applicant first name"
@@b.text_field(:id, "ApplicantFirstName").set(fName)
#sleep 1
puts "Fills in the applicant last name"
@@b.text_field(:id, "ApplicantLastName").set(lName)
end