I'm seeing a problem where it takes about 5 - 6 seconds per character to enter text into a text field using watir-webdriver. This only happens when using IE 10+. It does not happen in IE9, Firefox or Chrome.
Steps to reproduce: Open IRB Run the following commands require 'watir-webdriver' @browser = Watir::Browser.new :ie @browser.goto 'www.google.com' @browser.text_field(:name => 'q).set 'Abba Jabunga' This drastically slows down the time that it takes to run my test cases, especially if it requires a lot of text entry. For example, to login to a web application using the username and password 'test' the scenario took 45 seconds for this step alone. -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. [email protected] http://groups.google.com/group/watir-general [email protected] --- You received this message because you are subscribed to the Google Groups "Watir General" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
