WinAppDriver
WinAppDriver copied to clipboard
WinappDriver - Send keys as per the german keyboard layout
Currently am facing an issue with sending keys to the input field as per the German keyboard layout. My application is launched in german language and when I try to send keys using selenium method (SendKeys()), the values are passed as per the english keyboard layout. Below are the things I tried which did not work out:
- change the system language to German and then enter the values in input field
- DesiredCapabilities caps = new DesiredCapabilities(); caps.setCapability("locale", "de_DE");
Does anyone has a solution to it?
As of now only english is supported.
Hi, I hope you have found a solution till now. I would like to hear your solution as well. Here is what I am doing, I am sending alt+shift key sequence before typing any text.