internet explorer - Watir Webdriver Text Input Slow on IE -


i'm using cucumber , watir-webdriver create automated tests. using pageobject gem. example code below

require 'page-object'  class loginpage     include pageobject      text_field(:username, :name => 'username')     text_field(:password, :name => 'password')     link(:login, :text => 'sign in') end  browser = watir::browser.new browser.goto "mywebapploginscreen" login_page = loginpage.new(browser) login_page.username="myusername" login_page.password="mypass" login_page.login 

the problem i'm seeing takes long time input text username/password fields in ie (version 11). have tested firefox , chrome , text input immediately. in ie, however, enters text character character , each character takes 10 - 15 seconds put in. drastically slows down runtime of tests in ie. has else encountered this? ideas on how fix it? tried using browser.speed = :zippy option not seem help.

yeah 64 bit iedriverserver. ie's content handling , other technical jargon. deleted 64 bit driver , downloaded 32 bit 1 , working chrome , firefox. here link files.

http://selenium-release.storage.googleapis.com/index.html

also note work reasons using ie10 try if on ie11


Comments

Popular posts from this blog

visual studio - vb.net filter binding source by time -

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -