Speaking of modal dialogs, one of the developers from my company has
figured out a way to deal with them (by changing them into regular pop
ups at run time).  There is one trick that must be employed, and that
is to have a check in the Javascript code, for example, in pseudo code
(since I don't remember the exact coding from home)

if showModal not defined
   give a regular alert box
else
   show them the modal dialog
end


Now, in the browser, if you type in the URL:

javascript:  var x; showModal = x;

and hit enter

any action you do that would normally generate the modal dialog would
generate a regular alert pop up which you can use autoit to get rid
of.  The only problem with this is that if you use WATIR to set the
URL to line mentioned above, it hangs..

_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to