In an automatic test using selenium, I want to start edge and execute various operations automatically. However, the following error is returned when the test is executed. For a moment, the edge stands up, but it quickly disappears. I'd like to write code that doesn't get an error and the browser doesn't disappear after the test is complete. Can someone help me?
error message
[3556:12704:0223/163858.678:ERROR:edge_auth_errors.cc(387)] EDGE_IDENTITY: Get Default OS Account failed: Error: Primary Error: kImplicitSignInFailure, Secondary Error: kAccountProviderFetchError, Platform error: 0, Error string:
from selenium import webdriver
edge = webdriver.Edge(executable_path="C:\Python37\msedgedriver.exe")
edge.get("https://www.google.co.jp/")