VBA (Access2016 版で実行)で、ブラウザ Microsoft Edge のオブジェクトを URLを指定(あいまい検索)して で取得 できる コードをつくってください。
イメージとしては、
IE では こんな感じの関数で取得できるのを Microsoft Edge版 にしてほしいです。
Function XXXX(URL As String) As Object
Dim objIE As Object
Dim objSh As Object
Dim objWindow As Object
Dim sWindowName As String
Set objSh = CreateObject("Shell.Application")
For Each objWindow In objSh.Windows
On Error Resume Next
sWindowName = ""
sWindowName = objWindow.FullName
On Error GoTo 0
If LCase(Right(sWindowName, 12)) = "iexplore.exe" Then
If objWindow.LocationURL like "*" & URL & "*" Then
Set objIE = objWindow
Exit For
End If
End If
Next
If objIE Is Nothing Then
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True
objIE.Navigate2 URL