I tried automation this proccess with excel vba:
After to click in link... Open next window:
my code:
Sub WFM_test() Sheets("Preenchimento_Remedy").Activate Wd = Range("D02").Value 'URL address Set objShell = CreateObject("Shell.Application") Set objAllWindows = objShell.Windows For Each ow In objAllWindows 'MsgBox ow If (InStr(1, ow, "Internet Explorer", vbTextCompare)) Then 'MsgBox ow.Hwnd & " " & ow & " " & ow.locationURL If (InStr(1, ow.LocationURL, Wd, vbTextCompare)) Then Set objRemedy = ow End If End If Next If objRemedy Is Nothing Then Else Set objPage = objRemedy.Document Set WFM = ObjPage.getElementsByClassName("MenuEntryNameHover") WFM.item(0).click End if End Sub