Hello guys!
I don’t know if it’s a bug or not bug I realize a problem with accentuation in sendKeys method.
All the time when I try to send a text with a accentuation, like ç or ã the text is not sent in an EditText.
Exemple:
driver.findElement(By.id("<id>")).sendKeys("ção");
It happens in devices and emulator.
I’ve tested in a Galaxy S4 em Moto G2, and Android Emulator with API 19 and 21
Any suggestion?
Regards!
1 Like
Ok, Let me revive this old topic.
I had some problem as this user, so I used extra capabilities:
capabilities.setCapability("unicodeKeyboard", true);
capabilities.setCapability("resetKeyboard", true);
This ways it starts to input characters, but its always inputting same strange character instead of the accent ones I’m providing (see screen: http://i.imgur.com/1vczx0q.png)
Any thoughts?
1 Like
Ok, nevermind
Its cucumber that from feature to step its corrupting the character. If I provide the characters directly in my steps, all goes well.