简体   繁体   中英

C# Selenium Edge - get running instance of Edge browser

I'm looking for a code where we can use the running instance of the browser of MS edge which open manually by the user. I know we can use that on Chrome driver but not able to use it on Edge browser. Thanks

Type: edge://version/ in browser you will get executable path of msedge.exe

copy this and close all edge instance.

now start edge as:

"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --remote-debugging-port=5555

Now add remote debugging port as:

var options = new EdgeOptions();
options.UseChromium = true;
options.AddAdditionalCapability("debuggerAddress", "127.0.0.1:5555");
var driver = new EdgeDriver(options);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM