sendKeys not saving text on Andorid(4.4.2)

I am using sendkeys(“text”) but the text gets cleared and is not saved upon revisiting the page in the app.
my setup:
appium=1.3.4.1
java
android=4.4.2

Any pointers are appreciated.
thx.

Try this,
put initially element.clear();
and then element.sendKeys(“text”);

Hope this works,…!!!

[SOLVED]okay i figured. i overlooked that my ‘done’ button on keyboard was not instantiated.
the text is now saved as expected.

1 Like