Željko Filipin wrote:
> while true
> break unless ie.text.include?("loading")
> sleep 1
> end
This is a more concise way of doing the same thing:
while (ie.text.include? 'loading') {sleep 1}
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general
