Hi,
I am trying to convert IE calls to WD calls but I can't find the information I need. Currently, my code is as below:
Local $oIE = ObjCreate("InternetExplorer.Application")
$oIE.Left = 15
$oIE.Top = 15
$oIE.theatermode = true
$oIE.fullscreen = false
$oIE.statusbar = true
$oIE.addressbar = true
$oIE.toolbar = true
$oIE.width = 10
$oIE.height = 10
$oIE.navigate($report)
$oIE.visible = true
Local $hwnd = _IEPropertyGet($oIE, "hwnd")
.......
How can I accomplish the same thing with IE for Edge using WD or other methods in AutoIt?
Thank you in advance!
VinaT