How can I run a watir
test in the context of the app that's being tested? I'd like my test to browse the app and then access ActionMailer::Base.deliveries
for emails or check models directly. This is how I understand what's being described here.
UPDATE: They probably use Capybara
to be able to acces the email array and be in the context of the "server" which is instantiated just for the test.