Okay...I'm confused. The code below returns "true" when executed on it's own.  

span = $ie.span(:text, "title").exists?
puts span

However, once it's been added to an assert...it returns false and fails my test

class TC_assert < Test::Unit::TestCase
   def test_title
      assert($ie.span(:text, "title").exists?)
   end
end

Can someone please explain why? Also, I need help to get my assert to "pass".

Thanks!
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to