我正在尝试为我们构建的SDK创建自动化E2E测试。我们决定使用测试应用程序测试SDK,该应用程序将调用表中的命令来测试所有SDK功能。
我被困了一段时间,不明白为什么有些点击事件正在发挥作用,有些则没有。
我已经弄明白了,这是因为正在工作的那些是可见的,那些不工作的那些是不可见的(在需要可见时创建单元格之前不存在真的存在吗?)。在任何情况下,这都是我的想法或希望,因为如果不是我真的不明白发生了什么。
有效的代码示例:
@Test
public void step2_resetToken() throws InterruptedException {
int count = 0;
String s;
do {
MobileElement mElement = (MobileElement) iosDriver.findElement(By.name("Reset Token"));
mElement.click();
Thread.sleep(500);
count++;
assert count < TIMEOUTTIME;
s = element.getText();
System.out.println(s);
} while(!(element.getText().contains("reset token performed:")));
}
代码无效的示例:
@Test
public void step3_isAuthenticatedByPIN() throws InterruptedException {
WebElement tableView = (WebElement) iosDriver.findElementByClassName("XCUIElementTypeTable");
tableView.scrollTo("isAuthenticatedByPIN").click();
int count = 0;
String s;
do {
////XCUIElementTypeStaticText[@name="isAuthenticatedByPIN"]
MobileElement mElement = (MobileElement) iosDriver.findElementByClassName("XCUIElementTypeTable");
mElement.sendKeys("isAuthenticatedByPIN");
mElement.findElement(By.name("isAuthenticatedByPIN"));
mElement.click();
Thread.sleep(500);
count++;
assert count < TIMEOUTTIME;
s = element.getText();
System.out.println(s);
} while(!(element.getText().contains("isAuthenticatedByPIN: YES")));
}
我之前也试过调用这个方法,所以会有一个滚动但似乎它找不到应用程序启动时不可见的元素:
public static void scrolltoXPath(RemoteWebDriver driver, String xPath) {
RemoteWebElement parent = (RemoteWebElement)driver.findElement(By.className("XCUIElementTypeTable"));
String parentID = parent.getId();
HashMap<String, String> scrollObject = new HashMap<String, String>();
scrollObject.put("element", parentID);
scrollObject.put("name", "isConnected");
driver.executeScript("mobile:scroll", scrollObject);
}
这是使用scrollTo但Java客户端尝试的测试无法识别scrollTo(这是Java还是Javascript方法)。此外,我尝试了我在谷歌找到的所有其他方法,无法弄清楚这一点。
谢谢。
您无法单击屏幕中未显示的元素。
在单击该元素之前,需要滚动到该元素。您可以以各种方式滚动。您可以使用坐标滚动。您还可以使用text,id,cont-desc等滚动。
使用坐标滑动屏幕
import io.appium.java_client.TouchAction;
import io.appium.java_client.touch.WaitOptions;
import io.appium.java_client.touch.offset.PointOption;
import java.util.concurrent.TimeUnit;
import static java.time.Duration.ofSeconds;
TouchAction action = new TouchAction(driver);
action.press(PointOption.point(115, 650)).waitAction(WaitOptions.waitOptions(ofSeconds(1)))
.moveTo(PointOption.point(115, 350)).release().perform();
使用cont-desc滚动屏幕
public static MobileElement scrollElementByContentDesc(String scrollableList, String uiClassSelector, String contentDesc) {
return driver.findElement(MobileBy.AndroidUIAutomator(
"new UiScrollable(new UiSelector().resourceId(\"" + scrollableList + "\"))" +
".getChildByDescription(new UiSelector().className(\"" + uiClassSelector + "\"), \"" + contentDesc + "\")"));
}
有关appium滚动策略的更多信息,请访问this tutorial