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

Java tutorial

Introduction

Here is the source code for org.xframium.page.keyWord.step.spi.KWSAt.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.Dimension;
import org.openqa.selenium.Point;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.xframium.page.Page;
import org.xframium.page.data.PageData;
import org.xframium.page.element.Element;
import org.xframium.page.keyWord.step.AbstractKeyWordStep;

public class KWSAt extends AbstractKeyWordStep {

    /* (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("There was no Page Object defined");

        Element currentElement = getElement(pageObject, contextMap, webDriver, dataMap).cloneElement();
        currentElement.setCacheNative(true);
        Point at = ((WebElement) currentElement.getNative()).getLocation();
        Dimension size = ((WebElement) currentElement.getNative()).getSize();

        String contextName = getContext();
        if (contextName == null)
            contextName = getName();

        if (getContext() != null) {
            if (log.isDebugEnabled())
                log.debug("Setting Context Data to [" + currentElement.getValue() + "] for [" + getContext() + "]");

            contextMap.put(contextName + ".x", at.getX() + "");
            contextMap.put(contextName + ".y", at.getY() + "");
            contextMap.put(contextName + ".width", size.getWidth() + "");
            contextMap.put(contextName + ".height", size.getHeight() + "");
        }

        return currentElement.isPresent();
    }

}