我陷入了一种特殊的逻辑。 我的要求如下
查询ID为六位数,所以我正在使用
WebElement getInquiryId=driver.findElement(By.xpath("//a[contains(text(),'^\d{6}$')]"));
请根据以下要求帮助我制作硒代码
答案 0 :(得分:1)
这将以某种方式成为第4步的代码:
while(!getInquiryId.isDisplayed()){
try {
Thread.sleep(10000); //wait for 10 seconds
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(getInquiryId.isDisplayed()){
break;
}else{
refreshButton.click();
}
}