我目前正在开发一个涵盖离线功能的Espresso测试套件。为了实现这些测试,我需要创建一个可以调用的方法来切换/关闭网络连接。到目前为止,我已经能够切换WiFi,但我还没有找到如何关闭蜂窝数据。
如有任何资料,敬请见谅。
发布于 2019-05-24 17:51:55
您也可以执行一个真正的jank解决方案。注:我这样做主要是为了好玩,不提倡实际使用;)
#!/bin/bash
### SET Airplane Mode ON ###
adb shell am start -a android.settings.AIRPLANE_MODE_SETTINGS \
&& for i in {1..5}
do
adb shell input keyevent 20
done \
&& adb shell input keyevent 23 \
&& adb shell input keyevent 4;
### Run tests ###
### SET Airplane Mode OFF ###
# NOTE: When Airplane Mode is enabled in API 28, "Mobile network" is disabled. Additionally, since Android Setting's Network & internet
# is still running in the background, you'll have to select the down action two less times.
adb shell am start -a android.settings.AIRPLANE_MODE_SETTINGS \
&& for i in {1..3}
do
adb shell input keyevent 20
done \
&& adb shell input keyevent 23 \
&& adb shell input keyevent 4;https://stackoverflow.com/questions/52450414
复制相似问题