我将Android草图模板作为for (int i = counterstart; i <= counterend; i++) {
if(driver.findElement(By.xpath("//*[@id='" + i + "']/a")).isDisplayed()){
System.out.println(i+" is present");
String Projects = driver.findElement(By.xpath("//*[@id='" + i + "']/a")).getText();
System.out.println(Projects);
} else{
System.out.println(i+" is NOT present");
}
}
文件。不幸的是我无法在Linux或Windows上使用它,但Sketch程序仅适用于Mac OS。如何在Linux或Windows中打开.sketch
文件?