From: Amruta Date: 2007-05-17T22:08:28+09:00 Subject: How to handle popup dialog box Hi, I'am new to Ruby.Please help me to get this done. After clicking on a button a popup dialog box appears on the screen.Which is a login page having Username and Password text fields and Ok button.I'am not able to get that dialog box and not able to set text values. ie.button(:id , "Sign In").click def enabled_popup(timeout) #popup=ie.Dialog("title:Login").text().to_s hwnd=ie.enabled_popup(5) if(hwnd) w=WinClicker.new w.makeWindowActive(hwnd) w.setTextBoxText(hwnd,"admin") w.clickWindowsButton_hwnd(hwnd,"Ok") end end Thanks in advance. -- Posted via http://www.ruby-forum.com/.