Is it somehow possible to force Selenium2 webdriver sendkeys method to use specific keyboard layout instead of Windows active one in specific testcase?
The issue I ran into is that my default keyboard layout is "Latvian (apostrophe)" (where apostrophe is pressed before accented letters) and
webdriver.findElement(By.name("lastName")).sendKeys("O'Neill");
is actually entered as "OĊ eill" in the field.
P.S. Couldn't find one, but maybe there's some Selenium2 webdriver method for setting field value as a whole without typing?