Re: [Wtr-general] Solution for accessing showModal Dialogs yet?

2006-09-18 Thread Christian Baumann
Hi! James, Watir 1.5 development branch does support modal dialogs. I've been using it for a while with one of the applications I'm testing. If you want to install the latest development version the instructions are on the FAQ page: http://wiki.openqa.org/display/WTR/FAQ#FAQ-devgem When

Re: [Wtr-general] Solution for accessing showModal Dialogs yet?

2006-09-18 Thread Christian Baumann
Hi! James, Watir 1.5 development branch does support modal dialogs. I've been using it for a while with one of the applications I'm testing. If you want to install the latest development version the instructions are on the FAQ page: http://wiki.openqa.org/display/WTR/FAQ#FAQ-devgem When

Re: [Wtr-general] Solution for accessing showModal Dialogs yet?

2006-08-23 Thread David Schmidt
James, Try your tests with the latest 1.5 revision (1079). I've made some changes in the way click_no_wait works and one of them was to attach to the IE window using the window handle (HWND) instead of by title, which can sometimes find the wrong window. I'm running multiple web scraping

Re: [Wtr-general] Solution for accessing showModal Dialogs yet?

2006-08-21 Thread Bret Pettichord
James wrote: I should note, this script will work just fine, if it happens that two dialogs are not attempted to be opened simultaneously. Once this happens, the process hangs. If the opening and closing of modal dialogs occurs sequentially, no problem. but simultaneously won't work for me.

Re: [Wtr-general] Solution for accessing showModal Dialogs yet?

2006-08-21 Thread James
Bug WTR-88 opened in JIRA - Posted via Jive Forums http://forums.openqa.org/thread.jspa?threadID=3606messageID=10229#10229 ___ Wtr-general mailing list Wtr-general@rubyforge.org

Re: [Wtr-general] Solution for accessing showModal Dialogs yet?

2006-08-16 Thread Charley Baker
James, Watir 1.5 development branch does support modal dialogs. I've been using it for a while with one of the applications I'm testing. If you want to install the latest development version the instructions are on the FAQ page: http://wiki.openqa.org/display/WTR/FAQ#FAQ-devgem-CharleyOn 8/15/06,

Re: [Wtr-general] Solution for accessing showModal Dialogs yet?

2006-08-16 Thread James
I found the ie.modal_dialog function. And it works, but I have found problems. I am working on running multiple threads, each driving their own IE. When a modal dialog is opened in one IE instance an attempt to open the dialog in another instance, hangs my script =[ Has anyone else seen this?

Re: [Wtr-general] Solution for accessing showModal Dialogs yet?

2006-08-16 Thread Bret Pettichord
James wrote: I found the ie.modal_dialog function. And it works, but I have found problems. I am working on running multiple threads, each driving their own IE. When a modal dialog is opened in one IE instance an attempt to open the dialog in another instance, hangs my script =[ Has