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.
Package 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.
ParameterizedTest
BrowserExtension
See Also: