Best way to turn airplane mode on and off with Calabash

后端 未结 2 780
终归单人心
终归单人心 2021-01-28 18:31

What is the best way to turn airplane mode on and off using calabash-android?

Can I use perform_action(\'set_preferences\', .... ) ??

What does set_

2条回答
  •  盖世英雄少女心
    2021-01-28 18:52

    For Android devices, we can use this code in Step definition to forget Wi-Fi which is connected:

    do

    %x(adb shell am start -a android.intent.action.MAIN -n com.android.settings/.wifi.WifiSettings)
    %x(adb shell input keyevent 20)
    %x(adb shell input keyevent 23)
    %x(adb shell input keyevent 20)
    %x(adb shell input keyevent 23)
    

    end

提交回复
热议问题