我有一个应用程序想要允许来自设备事件的联系人。我用过 ( autoAlertAccept
,true) 但这对我不起作用。我正在使用appium 1.5.2,甚至我想刷那个特定的联系人来与那个特定的联系人聊天或打电话。当我使用:
driver.manage().timeouts().implicitlyWait(50, TimeUnit.SECONDS);
driver.findElement(By.className("android.widget.ImageButton")).click();
size1 = driver.manage().window().getSize();
System.out.println(size1); int x1 = (int) (size1.width * 0.70);
int x2 = (int) (size1.width * 0.30);
int starty =size1.height / 2;
System.out.println(x1 + x2 + starty);
driver.findElement(By.name("Demo Usr"));
driver.swipe(x1,starty,x2,starty,3000);
我发现了一些异常