Java tutorial
/** * Copyright (c) 2013 Andre Ricardo Schaffer * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.github.wiselenium.elements.component.impl; import java.util.List; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.interactions.Action; import org.openqa.selenium.interactions.Actions; import com.github.wiselenium.WiseContext; import com.github.wiselenium.Wiselenium; import com.github.wiselenium.elements.BasicElement; import com.github.wiselenium.elements.component.Component; /** * Basic implementation of a common Component. <br/> * Should be extended to reflect your own component methods. * * @author Andre Ricardo Schaffer * @param <T> The component type. * @since 0.3.0 */ public class ComponentImpl<T extends Component<T>> extends BasicElement<T> implements Component<T> { @SuppressWarnings("unchecked") @Override public T click() { this.getWrappedElement().click(); return (T) this; } @SuppressWarnings("unchecked") @Override public T doubleClick() { WebDriver driver = WiseContext.getDriver(); Action action = new Actions(driver).doubleClick(this.getWrappedElement()).build(); action.perform(); return (T) this; } @Override public <E> E findElement(Class<E> clazz, By by) { return Wiselenium.findElement(clazz, by, this.getWrappedElement()); } @Override public <E> List<E> findElements(Class<E> clazz, By by) { return Wiselenium.findElements(clazz, by, this.getWrappedElement()); } }