the first part of my code is to enter username and password, then it will go to another page, i used IELoadWait and the next page is fully loaded before the script continues. The problem arises when from the current page, i need to go to another page...i used IELoadWait again and it doesnt work this time.....ive tried the following 2 codes and failed..please help
[ autoit ]
$title = _IEPropertyGet($oIE, "locationurl") $oIE = _IEAttach($title, "URL") ;MsgBox(0, "Test", $title) ;to verify url _IELoadWait($oIE) hWnd = WinGetHandle("Start Center - Windows Internet Explorer") $oIE = _IEAttach($hWnd, "hwnd") _IELoadWait($oIE) ;MsgBox(0, "Test", $hWnd) ; to verify handle