Configure Safari browser to run selenium tests
We have already seen many posts on how to run selenium tests in chrome browser by downloading the chromedriver and setting the path. To run tests in Safari browser, we will use selenium’s SafariDriver class. Syntax – WebDriver driver = new SafariDriver(); Driver.get(“https://qavbox.github.io/demo/signup/”) Note – As per the below link, We no longer needed to…