Automation of Edge using IE vba code

AshokV824

New Member
Joined
Sep 16, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I used the following code to automate excel in IE but i would like to do the same in EDGE with IE Mode.
Kindly guide me. Thanks in advance.

Dim str_val1 As Object
Dim str_val2 As HTMLIFrame
Dim str_val3 As HTMLInputElement


Set objShell = CreateObject("Shell.Application")
IE_count = objShell.Windows.Count
For x = 0 To (IE_count - 1)
On Error Resume Next
my_url = objShell.Windows(x).document.Location
my_title = objShell.Windows(x).document.Title


If my_title Like "XXXXX" & "*" Then
Set ie = objShell.Windows(x)
Exit For
Else
End If
Next

AppActivate ie

Set str_val4 = ie.document.frames(0).document
Set str_val2 = str_val4.getElementById("XXXXX")
Set str_val5 = str_val2.contentWindow.document.getElementById("XXXXX")
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.

Forum statistics

Threads
1,215,201
Messages
6,123,621
Members
449,109
Latest member
Sebas8956

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top