We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.testbench.
Interface HasDriver
-
All Known Implementing Classes:
ParallelTest, TestBenchCommandExecutor, TestBenchElement, TestBenchTestCase
public interface HasDriver
An interface for classes that can provide an instance of a
WebDriver
-
-
Method Summary
All Methods Modifier and Type Method and Description org.openqa.selenium.WebDriver
getDriver()
Return the
WebDriver
instance associated with the implementing class instance.
-
-
-
Method Detail
-
getDriver
org.openqa.selenium.WebDriver getDriver()
Return the
WebDriver
instance 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
-
-