Jump to content

VinaTacoma

Members
  • Posts

    2
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

VinaTacoma's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I did but it doesn't seem to have the same capabilities that IE has. I am thinking about using FF UI Automation but I am new to AutoIt. Is there a tutorial that I can learn? The reason I decide to not use WD because my application just needs to open a page in FF or Edge with the properties are set as above. Maybe a bit simpler.... Thanks in advance!
  2. 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
×
×
  • Create New...