Forum Discussion
panirban
Jan 06, 2020Copper Contributor
Edge Chromium Automation for MAC and Windows
Hi, Need help regarding Edge chromium Beta selenium java automation. Using below code I am able to launch Edge Chromium beta(79.0.309.58) in windows 10 system. if(browserName.equals("edge...
johnjansen
Jan 06, 2020Former Employee
Hi panirban, two things jump out immediately, so can you check these just to make sure?
The path to msedge needs to be the full path, can you please make sure you use this:
ā/Applications/Microsoft Edge Beta .app/Contents/MacOS/Microsoft Edge Beta"
and also, note that it should be Applications, not Application
Let us know if that works.
-John
panirban
Jan 07, 2020Copper Contributor
Hi,
After changing binary path to
chromeOptions.setBinary("/Applications/Microsoft Edge Beta.app/Contents/MacOS/Microsoft Edge Beta");
still it didn't worked. Same error getting
- panirbanJan 07, 2020Copper Contributor
Hi, its working after the using full path as per your suggestion. We need to use latest selenium - server.
I was using old selenium- server for MAC thats why earlier it was failing.
Thanks for your help