在警报Selenium Webdriver上单击“确定" [英] Click OK on alert Selenium Webdriver

查看:123
本文介绍了在警报Selenium Webdriver上单击“确定"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

好吧,所以我知道关于webdriver中警报的问题还有很多其他答案,我已经仔细研究了它们,但我认为我的情况有所不同.当我单击提交按钮时,我已经切换到3帧,然后收到警报,因此我尝试切换回默认内容,然后使用try catch和alert.accept单击警报,但仍然没有单击警报.代码如下.预先感谢您的协助:)

Ok so I know there are a number of other answers on this question about alerts in webdriver and I've looked through them but I think my situation is a little different. When I click my submit button I have already switched into 3 frames and then I get the alert, so I tried to switch back to default content and then click the alert using a try catch and alert.accept but it still doesn't click the alert. Code is below. Thanks in advance for your assistance :)

public class BookAHoliday {

    public FirstPage completeHolidayFormAndSubmit(String firstDate, String lastDate) {

        sleepsAreBad();
        driver.switchTo().frame("ContainerFrame");
        driver.switchTo().frame("iframeCommunityContainer");
        driver.switchTo().frame("FORMCONTAINER");
        fluentWait(By.id("StartDate_txtInput"));
        firstDayOfLeaveInput.sendKeys(firstDate);
        sleepsAreBad();
        lastDayofLeaveInput.sendKeys(lastDate);

        try {
            submitButton.click();
        } catch (UnhandledAlertException f) {
            try {
                sleepsAreBad();
                driver.switchTo().defaultContent();
                Alert alert = driver.switchTo().alert();
                String alertText = alert.getText();
                System.out.println("Alert data: " + alertText);
                alert.accept();
            } catch (NoAlertPresentException e) {
                e.printStackTrace();
            }
        }
        sleepsAreBad();

        return PageFactory.initElements(driver, FirstPage.class);
    }


    private void sleepsAreBad() {
        try {
            Thread.sleep(5000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

    }


public class BaseTest {


    public static WebDriver driver;
    static String driverPath = "C:\\";

    @BeforeClass
    public static void setUp() {
        System.out.println("****************");
        System.out.println("launching Browser");
        System.out.println("****************");
        // Browser selection

        //Firefox

        DesiredCapabilities dc = new DesiredCapabilities();
        dc.setCapability(CapabilityType.UNEXPECTED_ALERT_BEHAVIOUR, UnexpectedAlertBehaviour.IGNORE);
        driver = new FirefoxDriver(dc);

driver.get(URL);

 @AfterClass()
    public static void tearDown() {
        if (driver != null) {
            System.out.println("Closing browser");
            driver.quit();
        }

    }


public class Bookings extends BaseTest{

    @Test(description = "Holiday booking")
    public void CD01() {

        FirstPage firstPage = PageFactory.initElements(driver, FirstPage.class);
        firstPage


                 .logIn("username", "password")
                .clickHolidayLink()
                .completeHolidayFormAndSubmit("12/05/2016", "15/05/2016");



    }

警报框这是警报框

推荐答案

catch

WebDriverWait wait = new WebDriverWait(driver, 3000);
wait.until(ExpectedConditions.alertIsPresent());
Alert alert = webDriver.switchTo().alert();
alert.accept();

也许会帮助您...:)

May be it will help you...:)

这篇关于在警报Selenium Webdriver上单击“确定"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆