Forum Discussion
AlejHerrBar2003
Oct 09, 2023Copper Contributor
URGENT: Edge Canary just crashes at least 2 min after opening
Since at least Friday and continuing in the version that the browser updated to as of making this post (119.0.2150.0), Edge Canary is prone to crash no matter what after opening for a period of at le...
IndianCodeMaster
Oct 25, 2023Copper Contributor
As workaround for Selenium, try to exclude the following OpenQA.Selenium.Chrome.ChromeOptions: "disable-sync":
options.AddExcludedArgument("disable-sync");
utk787
Oct 26, 2023Copper Contributor
IndianCodeMaster Thanks a ton, that solved the issue,
For anyone else looking for a solution you need to add below line for java
edgeOptions.setExperimentalOption("excludeSwitches",Collections.singletonList("disable-sync"));