Comment 15 for bug 1807108

Revision history for this message
Lin U Min (s1k2y37st) wrote :

Thanks!!!
I saw that and tested it immediately.

A issue:

In the document said "a click gets a tap and type/paste result in an input text".
My Test Code:

Debug.on(3)
adbScr = adbStart()
use(adbScr)

testImg = "aImg.png"

click(testImg) ##not worked
adbScr.click(testImg) ##not worked
aTap(testImg) ##worked
adbScr.aTap(testImg) ##worked

testTypeImg = "aType.png"
type(testTypeImg) ##worked
adbScr.type(testTypeImg) ##worked

Seems like the click() doesn't work?
-------

I will keep on testing!