org.xframium.page.keyWord.step.spi.KWSAlert.java Source code

Java tutorial

Introduction

Here is the source code for org.xframium.page.keyWord.step.spi.KWSAlert.java

Source

/*******************************************************************************
 * xFramium
 *
 * Copyright 2016 by Moreland Labs, Ltd. (http://www.morelandlabs.com)
 *
 * Some open source application is free software: you can redistribute 
 * it and/or modify it under the terms of the GNU General Public 
 * License as published by the Free Software Foundation, either 
 * version 3 of the License, or (at your option) any later version.
 *  
 * Some open source application is distributed in the hope that it will 
 * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty 
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *  
 * You should have received a copy of the GNU General Public License
 * along with xFramium.  If not, see <http://www.gnu.org/licenses/>.
 *
 * @license GPL-3.0+ <http://spdx.org/licenses/GPL-3.0+>
 *******************************************************************************/
package org.xframium.page.keyWord.step.spi;

import java.util.Map;
import org.openqa.selenium.Alert;
import org.openqa.selenium.NoAlertPresentException;
import org.openqa.selenium.WebDriver;
import org.xframium.page.Page;
import org.xframium.page.data.PageData;
import org.xframium.page.keyWord.step.AbstractKeyWordStep;

public class KWSAlert extends AbstractKeyWordStep {

    private enum ALERT_TYPE {
        ACCEPT, DISMISS, SEND_KEYS;
    }

    /* (non-Javadoc)
     * @see com.perfectoMobile.page.keyWord.step.AbstractKeyWordStep#_executeStep(com.perfectoMobile.page.Page, org.openqa.selenium.WebDriver, java.util.Map, java.util.Map)
     */
    @Override
    public boolean _executeStep(Page pageObject, WebDriver webDriver, Map<String, Object> contextMap,
            Map<String, PageData> dataMap, Map<String, Page> pageMap) {
        if (pageObject == null)
            throw new IllegalStateException("Page Object was not defined");
        try {
            Alert currentAlert = webDriver.switchTo().alert();

            if (getContext() != null && !getContext().isEmpty())
                contextMap.put(getContext(), currentAlert.getText());

            switch (ALERT_TYPE.valueOf(getName())) {
            case ACCEPT:
                currentAlert.accept();
                break;

            case DISMISS:
                currentAlert.dismiss();
                break;

            case SEND_KEYS:
                currentAlert.sendKeys(getParameterValue(getParameterList().get(0), contextMap, dataMap) + "");
                currentAlert.accept();
                break;

            default:
                log.warn("Unhandled Alert Type: " + getName());

            }
        } catch (NoAlertPresentException e) {
            return false;
        }

        return true;
    }

}