2021-08-26 07:39:26 +01:00
|
|
|
# input
|
|
|
|
|
2022-10-03 12:59:40 +01:00
|
|
|
> Kirim sinyal input terhadap sebuah perangkat Android.
|
2021-08-26 07:39:26 +01:00
|
|
|
> Perintah ini hanya dapat dijalankan melalui `adb shell`.
|
|
|
|
> Informasi lebih lanjut: <https://developer.android.com/reference/android/view/KeyEvent.html#constants_1>.
|
|
|
|
|
2022-10-03 12:59:40 +01:00
|
|
|
- Masukkan input karakter (layaknya pada papan kunci / keyboard) terhadap perangkat Android:
|
2021-08-26 07:39:26 +01:00
|
|
|
|
|
|
|
`input keyevent {{kode_event}}`
|
|
|
|
|
2022-10-03 12:59:40 +01:00
|
|
|
- Masukkan input teks ke dalam perangkat Android (spasi ditandai dengan `%s`):
|
2021-08-26 07:39:26 +01:00
|
|
|
|
|
|
|
`input text "{{teks}}"`
|
|
|
|
|
2022-10-03 12:59:40 +01:00
|
|
|
- Masukkan input sentuhan layar pada posisi tertentu:
|
2021-08-26 07:39:26 +01:00
|
|
|
|
|
|
|
`input tap {{posisi_x}} {{posisi_y}}`
|
|
|
|
|
2022-10-03 12:59:40 +01:00
|
|
|
- Simulasikan gerakan usap/swipe terhadap perangkat Android:
|
2021-08-26 07:39:26 +01:00
|
|
|
|
|
|
|
`input swipe {{posisi_awal_x}} {{posisi_awal_y}} {{posisi_akhir_x}} {{posisi_akhir_y}} {{durasi_dalam_milidetik}}`
|
|
|
|
|
2022-10-03 12:59:40 +01:00
|
|
|
- Simulasikan interaksi tekan-dan-tahan terhadap perangkat Android:
|
2021-08-26 07:39:26 +01:00
|
|
|
|
|
|
|
`input swipe {{posisi_x}} {{posisi_y}} {{posisi_x}} {{posisi_y}} {{durasi_dalam_milidetik}}`
|