WebDriverManager integration with Selenium is as follows;
import io.github.bonigarcia.wdm.WebDriverManager;
class ChromeCreateTest {
WebDriver driver;
@BeforeEach
void setup() {
driver = WebDriverManager.chromedriver().create();
}
@Test
void test() {
// Your test logic here
}
}
How to integrate Karate with WebDriverManager?
I couldn't find a Karate project configured with WebDriverManager from Github.
https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager
Can I integrate all browsers into karate with WebDriverManager? Thanks for your support