MicrosoftEdge / EdgeWebDriver

Feedback and discussions about WebDriver for Microsoft Edge
MIT License
55 stars 7 forks source link

Not able to disable auto profile switching and auto signing feature #142

Open JangirSumit opened 4 months ago

JangirSumit commented 4 months ago

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?

akumar645 commented 4 months ago

I am also facing the same issue.

jbakeri4 commented 4 months ago

This is how I handle it in Java:

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