created
Dec '18
last reply
Jan '19
- 1
reply
- 137
views
- 2
users
- 1
link
This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now.
20 days later
Have you tried activating the screen first?
I had same issue but activating the screen before clicking the object inside an image with NAF = TRUE worked for me.
I sent an enter key before I put the xpath for searching the element like this:
driver.pressKeyCode(66);
driver.findElementByXPath("//android.widget.TextView[@text = ‘your text’]").click();
note: 66 code means Enter key.