Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am aware that Frank tool provide option for capturing screenshot. But it is a user defined step.

Taking a screenshot of the app:

Then /^I save a screenshot with prefix (\w+)$/ do |prefix|
 filename = prefix + Time.now.to_i.to_s
 %x[screencapture #{filename}.png]
end

But is there any other possibility of by default saving the screenshot in case of unexpected test failure ?

share|improve this question

1 Answer

up vote 3 down vote accepted

Assuming the application is still open, you could use an After hook to call the Frank step that takes screenshots if the test failed.

Try this:

After do |scenario|
    if scenario.failed?
        steps %Q{
            Then I save a screenshot with prefix test
        }
    end 
end
share|improve this answer
Thanks a lot Justin, u've made my day – Vijay May 22 '12 at 13:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.