All I want to know how I can disable edge sidebar using Edge capability. so i can use it in automation. I am aware about two different ways to it mentioned below.
But i want to do it using Capabilities and EdgeOptions..
Attaching image of sidebar in edge
Please mention if any solution on this...
Edge version - Version 107.0.1418.62 (Official build) (64-bit) OS - win10
var options = new EdgeOptions();
options.AddArgument("--disable-features=msHubApps");
DESIRED_CAPABILITIES = {
edge: {
browser_opts: {args: %w( --disable-features=msHubApps),}
}
}
Resource - https://github.com/MicrosoftEdge/EdgeWebDriver/issues/61