请教下各位,我在开发 macaca 用例的时候,环境如下
总是得到如下错误,测试无法完成并终止测试
我的测试代码是:
Element ele = ...
ele.click();
if (ele == null || !ele.isDisplayed()) {
Assert.fail("button找不到");
}
driver.sleep(10000);
JSONArray contexts = driver.contexts();
System.out.println(contexts.getString(0));
System.out.println(contexts.getString(1));
System.out.println(contexts.getString(2));
driver.context(contexts.getString(1));