Failed to send text to Content-desc field with Appium method using sendkeys () method
I am trying to automate Google Hangouts app using appium (in java).
I am using Appium CLient v 1.3.7. I am using Samsung Galaxy S5 Android os version 5.0.
I want to send text using the element.sendkeys () method in a field that contains a description of the content as an "Enter name, email, number or circle" field. Appium finds a field, but after executing the sendkeys () command, it shows nothing in one field. Appium clicks on the left edge of the app.
There is no resource identifier in this field. I tried element.click () before using sendkeys () but didn't help. Any suggestion?
dr = new AndroidDriver(new URL("http://127.0.0.1:4723/wd/hub"),capa);
WebElement el1 = dr.findElementByName("Type a name, email, number or circle");
el1.click();
el1.sendKeys("0000000");
+3
source to share