Package com.vaadin.testbench
Interface HasDriver
-
- All Known Implementing Classes:
ParallelTest,TestBenchCommandExecutor,TestBenchElement,TestBenchTestCase
public interface HasDriverAn interface for classes that can provide an instance of aWebDriver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.openqa.selenium.WebDrivergetDriver()Return theWebDriverinstance associated with the implementing class instance.
-
-
-
Method Detail
-
getDriver
org.openqa.selenium.WebDriver getDriver()
Return theWebDriverinstance associated with the implementing class instance. This can be simply the class itself re-cast as a WebDriver, or a reference to some WebDriver obtainable by any other means.- Returns:
- the contained WebDriver instance
-
-