Package com.vaadin.testbench.annotations
Annotation Type RunLocally
-
@Retention(RUNTIME) @Target(TYPE) @Inherited public @interface RunLocally
Marks this testcase to run locally.
Can receive a parameter to define which browser and version to run the test on.
You can also define a browser name/version to run on locally using the
com.vaadin.testbench.Parameters.runLocallysystem parameter.This parameter will be used to instantiate the
WebDriver.
The value can be obtained throughParallelTest.getRunLocallyBrowser()andParallelTest.getRunLocallyBrowserVersion()Usage:
@RunLocally(Browser.CHROME)