SeleniumBasic
SeleniumBasic copied to clipboard
Setting profile in Edge
Is there a way to use the default profile or some other profile with Edge? The .setProfile syntax or .addArgument don't seem to work and slenium keeps generating a temporary profile.
Hello there. I'm having the same issue. This works very nice in VBA and Selenium Basic with Chrome:
Driver.SetProfile "C:\Users\UserNameHere\AppData\Local\Google\Chrome\User Data"
Driver.Start
Driver.Get ("https://www.google.com/")
but not with MS Edge:
Driver.SetProfile "C:\Users\UserNameHere\AppData\Local\Microsoft\Edge\User Data\Default"
Driver.Start
Driver.Get ("https://www.google.com/")
Has anyone solved this?. Thanks!