hi I cannot manage to press a button in a pop up confirmation box. The confirmation box is generated after making click on a link in a web page ("Are you sure you want to ....? ") My code is : Local $reset $reset=$documentIE.getElementsByTagName("table").item(7).getElementsByTagName("tr").item(1).getElementsByTagName("td").item(4).getElementsByTagName("a").item(0) _IEAction($reset, "click") WinWait("Microsoft Internet Explorer" , "") If Not WinActive("Microsoft Internet Explorer" , "") Then WinActivate("Microsoft Internet Explorer" , "") WinWaitActive("Microsoft Internet Explorer","") EndIf Send("{ENTER}") After the click on the link, the confirmation message appears. Anything after that line (_IEAction($reset, "click")) doesn't work. Entire script is paused until de user makes the choice. i have the following settings : AutoItSetOption("WinTitleMatchMode", 1) AutoItSetOption("WinSearchChildren", 1) The pop up is a simple window, with title "Microsoft Internet Explorer" , the text "are you sure you want to reset the user password?", buttons : OK (button id =1), Cancel (Button ID=2) What am i doing wrong?