java - Selenium sendkeys drops character with Chrome Driver -


selenium sendkeys chrome driver drops character "2" , "4". other characters ok. when use other browser (ie or ff), ok.

code:

webelement name = driver.findelement(localizator); name.clear(); name.sendkeys("1234567890 abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz"); 

result: input box filled with

13567890 abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 

characters 2 , 4 missing, other characters filled correctly.

i use windows 7 64bit, chrome version 29.0.1547.57 m, chromedriver win32 (v2.2.215849.dyu) - newest one.

investigating czech republic also, going make wild assumption, keyboard set czech default.

i had strange issues sendkeys when system had czech keyboard default one. since changed default english, problems dissapeared.

if not help, please provide info going happen if try this:

  name.sendkeys("2");   name.sendkeys("22222222");   name.sendkeys("4");   name.sendkeys("44444444");   name.sendkeys("424242"); 

Comments

Popular posts from this blog

design - Custom Styling Qt Quick Controls -

Unable to remove the www from url on https using .htaccess -