문제

Can we simulate Home button on Android devices for Calabash-Android? I need to tap on Home button in our scripts to execute my Scripts using Calabash.

도움이 되었습니까?

해결책

I have not tried this yet myself. But looking around for a solution I did find this.

Link http://krazyrobot.com/2014/02/calabash-android-enter-text-from-keyboard-using-adb/ by Balazs Balazs aka krazyrobot

His solution is to use send keycodes, for the home button that is KEYCODE_HOME. Wrapping that into calabash would give you:

system("adb shell input keyevent KEYCODE_HOME")

Again I have not tried this, but it sounds like a solution.

다른 팁

Additionally, the

system("adb shell input keyevent KEYCODE_BACK")

works if you just want to go back a screen.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top