如何使用UIAutomator关闭“快速设置”系统面板?

时间:2018-10-15 22:39:08

标签: java android kotlin uiautomator android-uiautomator

在我的android测试中,我使用以下代码打开了快速设置面板:

device = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation())
device.openQuickSettings()

现在如何关闭或滑回快速设置面板?

1 个答案:

答案 0 :(得分:2)

即使没有方法来显式关闭它,也可以使用UiDevice对象在API> = 16上调用pressBack()方法。设备)以关闭快速设置。对于某些设备,需要两次Simulates a short press on the BACK button呼叫。 示例:

pressBack()