public static void checkText(Android driver,String bytype,String object,String data,String check){
Thread.sleep(500);
try{
//获取指定元素文本信息
String a=driver.findElement(by(by type,object)).getText();
System.out.println("实际运行的值"+a);
if(a.equals(checkvalue){
//如果获取到的文本信息和参数传过来的信息相符),就断言成功,设置为true
constant.sTestResult=true;}
else{
//断言失败为false
constant.sTestResult=false;}
}catch(Exception e){
e.printStackTrace();
//如果获取元素时报错设为false
constant.sTestResult=false;
}
}
网友评论