Re: [Wtr-general] Can Watir be paused resumed manually when running test cases?

2007-05-01 Thread annapurna
Please can you provide steps to use the ruby-debugger. Thanks in advance, anna ___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listinfo/wtr-general

Re: [Wtr-general] Can Watir be paused resumed manually when running

2007-02-28 Thread John Fitisoff
PROTECTED] On Behalf Of John Lolis Sent: 2007Äê2ÔÂ27ÈÕ 21:06 To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Can Watir be paused resumed manually when running I like using http://rubyforge.org/projects/ruby-breakpoint/ all you do is call breakpoint() and the application

Re: [Wtr-general] Can Watir be paused resumed manually when running test cases?

2007-02-27 Thread Željko Filipin
If you need to pause for fixed time, try sleep 1 # 1 second pause For more functionality, see ruby-breakpoint ( http://rubyforge.org/projects/ruby-breakpoint/) or ruby-debug ( http://rubyforge.org/projects/ruby-debug/). I have not used them, but I have read at this list that ruby-breakpoint can

Re: [Wtr-general] Can Watir be paused resumed manually when running

2007-02-27 Thread John Lolis
I like using http://rubyforge.org/projects/ruby-breakpoint/ all you do is call breakpoint() and the application stops. The best part is that you are now at the IRB prompt so you can do all sorts of fun things :) I setup my smoke test to call break point on any exception, i can then hop in

Re: [Wtr-general] Can Watir be paused resumed manually when running

2007-02-27 Thread Jason He
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Lolis Sent: 2007年2月27日 21:06 To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Can Watir be paused resumed manually when running I like using http://rubyforge.org/projects/ruby-breakpoint/ all you do is call breakpoint

[Wtr-general] Can Watir be paused resumed manually when running test cases?

2007-02-26 Thread Jason He
Hi, I want add the pause/resume feature into the watir testing, rather than interrupt it and restart the whole testing process. Please anybody tell me if it is possible, or is there such solution on hand already. Thanks Jason ___