How to run Selenium code on Edge Browser (from downloading to invoking the browser)?

In this video will see how to run selenium code on edge browser. Step to Step, right from downloading the edge browser to running the code on edge browser. Just two lines change.

I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com

Code:

System.setProperty("webdriver.edge.driver","C:\\LocalFolderStructure\\msedgedriver.exe");

WebDriver driver = new EdgeDriver();

Leave a Reply