0

我正在开发 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");
    }
}
4

1 回答 1

0

如果第二个有错误,删除分号会更好。

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")) //#############HERE
    {
        System.out.println("No Recipients found");
        driver.switchTo().alert().accept();
        System.out.println("Handling the Pop Up");
    }
}

无论如何,如果您告诉我们为什么不起作用,我可以检查是否还有其他问题。

于 2013-09-05T13:02:25.567 回答