我正在开发 Web 应用程序,在该应用程序中,用户需要将值发送到
搜索文本框,然后用户需要单击搜索按钮,如果值为
在数据库中可用,则该值将显示在另一个文本框中,如果该值
不在数据库中,然后警报弹出窗口显示在屏幕上,我在下面使用
代码,但它不能正常工作。
if(driver.findElement(By.id(APL.MT_ET_Search_Btn_ID)).isEnabled())
{
driver.findElement(By.id(APL.MT_ET_Search_Btn_ID)).click();
System.out.println("Clicked on the Search Button for the Text box");
Thread.sleep(2000);
//Handling the Code
String page = driver.getTitle();
System.out.println(page);
if(page.equals("No Recipients found"));
{
System.out.println("No Recipients found");
driver.switchTo().alert().accept();
System.out.println("Handling the Pop Up");
}
}