在我的android测试中,我使用以下代码打开了快速设置面板:
device = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation())
device.openQuickSettings()
现在如何关闭或滑回快速设置面板?
答案 0 :(得分:2)
即使没有方法来显式关闭它,也可以使用UiDevice
对象在API> = 16上调用pressBack()
方法。设备)以关闭快速设置。对于某些设备,需要两次Simulates a short press on the BACK button
呼叫。
示例:
pressBack()