From: Christopher Swasey Date: 2008-02-20T09:15:01+09:00 Subject: Re: HELP: Need to continue the loop after the exception On 2/19/08, mirth wrote: > Is that because Watir Unit Test is behaving differently Or is that > because the browser is still running the page even the exception > happens? > I forgot to mention: IIRC, "rescue" only rescues StandardError by default. If you want to rescue NoMemoryError or SystemExit, you have to either rescue those specifically, or use "rescue Exception" to capture *everything*. Then again, if you run into either of those exceptions you probably have bigger problems with your code. Christopher