EdgeWebDriver icon indicating copy to clipboard operation
EdgeWebDriver copied to clipboard

Not able to disable auto profile switching and auto signing feature

Open JangirSumit opened this issue 1 year ago • 2 comments

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?

JangirSumit avatar Apr 24 '24 03:04 JangirSumit

I am also facing the same issue.

akumar645 avatar Apr 25 '24 16:04 akumar645

This is how I handle it in Java:

static WebDriver driver;
EdgeOptions options = new EdgeOptions();
options.addArguments("--guest");
driver = new EdgeDriver(options);

jbakeri4 avatar Apr 30 '24 17:04 jbakeri4