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

2007-05-01 Thread Charley Baker
I'd highly second that. It's small simple and breaks you out where you want to be to inspect your current state through irb. It's been dropped and ruby-debugger is the newer project, but since I haven't had a need for much else, I haven't looked at ruby-debugger yet. The ruby eclipse plugin also

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

2007-05-01 Thread Bret Pettichord
Željko Filipin wrote: > 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-b

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

2007-03-01 Thread Jason He
lf Of John Lolis Sent: 2007年2月28日 21:27 To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Can Watir be paused & resumed manually You are looking for some kind of interactive script. I can't imagine its too hard to do, but I don't have much time to mess around with it. Heres a

Re: [Wtr-general] Can Watir be paused & resumed manually whenrunning

2007-03-01 Thread Jason He
2007年3月1日 6:46 To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Can Watir be paused & resumed manually whenrunning > How to catch keyboard input signal by manual to > pause/resume the testing process, for example using > CTRL+P to pause and CTRL+R to resume. There's a really easy,

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

2007-02-28 Thread John Fitisoff
son > > -Original Message- > From: [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 >

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

2007-02-28 Thread John Lolis
You are looking for some kind of interactive script. I can't imagine its too hard to do, but I don't have much time to mess around with it. Heres a fun little script i put together to test out an idea. Maybe it will spark some ideas. (note: do not use this for anything, its just for fun. Also,

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

2007-02-28 Thread Željko Filipin
On 2/28/07, Jason He <[EMAIL PROTECTED]> wrote: I want to pause the testing process at moment and at random time length, and resume it latterly. What do you want do to while script is paused? You can pause for random number of seconds with "sleep". -- Zeljko Filipin zeljkofilipin.com

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

2007-02-27 Thread Jason He
] [mailto:[EMAIL PROTECTED] On Behalf Of ?eljko Filipin Sent: 2007年2月27日 17:27 To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Can Watir be paused & resumed manually whenrunning test cases? If you need to pause for fixed time, try sleep 1 # 1 second pause For more functionality, see

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 "breakpoi

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 a

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

[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 ___ Wtr-gene