org.jboss.arquillian.drone.webdriver.spi.DroneAugmented Maven / Gradle / Ivy
package org.jboss.arquillian.drone.webdriver.spi;
/**
*
* Interface which is implemented by WebDriver's Augmenter during augmentation.
*
*
*
* Allows to unwrap the augmented instance of WebDriver.
*
*
* @author Lukas Fryc
*/
public interface DroneAugmented {
/**
* Returns an augmented instance of WebDriver
*
* @return an augmented instance of WebDriver
*/
Object getWrapped();
}