public class Download extends DownloadUI{
@BeforeTest
public void setup_test() throws Exception {
setup();
Thread.sleep(5000);
location();
}
//下载一个文件
@Test
public void dropbuttondown() throws Exception{
restartAS();
inappium();
drop();
clearlist();
System.out.println("dropbuttondown done");
}
//全选下载目录的所有文件
@Test
public void morefilesdown() throws Exception{
restartAS();
inappium();
morefiles();
clearlist();
System.out.println("morefilesdown done");
}
上面的代码是在一个类里同时运行两个 case,如果第一个出错了第二个也就不继续了,怎么实现 case 的独立性,错误抛出后继续运行下一个 case 呢?