com.vaadin.testbench.

Annotation Interface ParameterizedBrowserTest

@Target(METHOD) @Retention(RUNTIME) @ParameterizedTest @ExtendWith(BrowserExtension.class) public @interface ParameterizedBrowserTest

Shorthand annotation for marking parameterized test methods in test class.

Combines ParameterizedTest annotated tests with BrowserExtension to run browser test methods multiple times with different arguments.

Unlike BrowserTest, this annotation supports only a single browser. If the test class is configured to run on multiple browsers, the test methods annotated with ParameterizedBrowserTest are disabled.

Arguments for test method should be provided in the same way as when using @ParameterizedTest annotation.

See Also: