Copyable Example Code
You can paste this into the code editor; still verify target image, region, color, text, and timing values in your own device flow.
-- Koordinatlar arası kaydırma / Basic swipe
-- GesturePoint(Point(x,y), hold_ms, speed_ms)
-- Asagi yukari kaydırma (liste scroll)
swipe({
GesturePoint(Point(540, 1500), 0, 0),
GesturePoint(Point(540, 500), 0, 400)
})
wait(500)
-- Saga sola kaydırma (sayfa gecis)
swipe({
GesturePoint(Point(900, 960), 0, 0),
GesturePoint(Point(180, 960), 0, 300)
})
wait(500)
-- Yavas kaydırma (hassas kontrol)
swipe({
GesturePoint(Point(540, 1200), 0, 0),
GesturePoint(Point(540, 800), 0, 1000)
})
toast("Kaydirma tamamlandı")