我正在尝试将我的android仿真器屏幕旋转到横向模式以触发某些布局更改,但是setOrientationLeft()或setOrientationRight()方法不起作用。请注意,在我的AndroidManifest.xml文件中,我确保活动未设置任何方向。
@Test
public void test4RotateScreenToGetSignature()throws Exception {
.
.
.
mDevice.setOrientationLeft();
assertSignatureViewVisible();
mDevice.swipe(200, 1400, 400, 1600, 10);
mDevice.swipe(400, 1400, 200, 1600, 10);
.
.
}