1
而不是在Android調試橋或AndroidViewClient這樣使用drag
或swipe
命令:模擬觸摸,按住,移動在android系統調試橋
device.drag((600,800),(600,1200), 1000)
device.shell('input touchscreen swipe 600 800 600 1200 1000')
是否有某種方式來模擬像下面這樣?
1. press down on some coordinates (eventType=DOWN)
2. sleep 2 seconds (i.e. keep holding there)
3. move to some other coordinates
2. sleep 2 seconds (i.e. keep holding there)
5. release (eventType=UP)
基本上,你觸摸,在那裏保持幾秒鐘,拖動並保持在那裏幾秒鐘,然後鬆開墊。