使用 InstrumentationRegistry 和 UiDevice 类来模拟摇晃手势。
示例代码如下:
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.uiautomator.UiDevice
import org.junit.Test
class MyTest {
@Test
fun shakeEmulator() {
// 获取设备对象
val device = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation())
// 模拟摇晃手势
device.shake()
}
}