EdgeWebDriver
EdgeWebDriver copied to clipboard
Not able to disable auto profile switching and auto signing feature
Hi Guys,
I want to disable the profile switching and auto-signing with my work profile feature of Edge so that it won't redirect me to my organization URL. I tried doing so manually but that setting is not getting disabled when I open the browser from the automation
Can we disable these settings from the registry or by using any flags from the code?
I am also facing the same issue.
This is how I handle it in Java:
static WebDriver driver;
EdgeOptions options = new EdgeOptions();
options.addArguments("--guest");
driver = new EdgeDriver(options);