This link talks about how click a button but not how to retrieve the pop up text http://wiki.openqa.org/display/WTR/JavaScript+Pop+Ups
It used to work in Ruby 1.8.6 with Watir 1.6.5 with the following code
require 'rubygems'
require 'watir'
require 'watir/ie'
require 'watir\contrib\enabled_popup'
#get the window with specified handle.
WindowHandle = ARGV[0].to_i#1967760
if (Watir::IE.find(:hwnd,WindowHandle)==nil)
exit(1)
else
ObjIE = Watir::IE.find(:hwnd, WindowHandle.to_i)
end
PopupHandle=ObjIE.enabled_popup(25)
winObj=WinClicker.new
PopupText=winObj.getStaticText_hWnd(PopupHandle).[](1)
puts(PopupText)
But Ruby 1.9.2 with Watir 1.9.1 does not support WinCLicker so, it is not possible to reuse the same code. Any help would be appreciated.