I'm trying to run junit5 selenium tests with the Java Test Runner. I always get this error message:
org.openqa.selenium.WebDriverException: Driver isn't initialized. This extension can only be used in combination with the DriverParameterResolver
I guess this is related to the webDriver parameter that the test method expects:
void testMyPage(final WebDriver driver) {...}
I googled for DriverParameterResolver but found absolutely nothing. Is it possible to run selenium tests with this extension, and if yes, how?
I'm trying to run junit5 selenium tests with the Java Test Runner. I always get this error message:
I guess this is related to the
webDriverparameter that the test method expects:I googled for
DriverParameterResolverbut found absolutely nothing. Is it possible to run selenium tests with this extension, and if yes, how?