Slide 8
Slide 8 text
Setting up Driver Binary
—
1. Download webdriver binary, compatible with a local browser
2. Specify path to webdriver binary in tests:
System.setProperty(“webdriver.chrome.driver”,
“/path/to/binary/chromedriver”);
No way! We can do this better with WebDriverManager:
io.github.bonigarcia:webdrivermanager:4.4.3
Must-have library for managing drivers!
8