I've faced a problem using Selenium and chromedriver.
When using sendKeys()
method with capitals, letters are rearranged.
For example, I use:
element.sendKeys("ABCD")`
but in runtime it sends "CDAB" string.
As far I played with this method, it happens only with CAPITALS.
Does anyone know the reason why?