I've just started using cucumber and watir for some site testing, and it all work fine, but firefox doesn't shut down after the tests. I get this error:
!!! error running onStopped callback: TypeError: callback is not a function
*** LOG addons.xpi: shutdown
!!! error running onStopped callback: TypeError: callback is not a function
*** LOG addons.xpi: shutdown
!!! error running onStopped callback: TypeError: callback is not a function
*** LOG addons.xpi: shutdown
Any ideas, anyone?
Sorry - forgot the sample code!
require 'watir-webdriver'
Before do
$browser = Watir::Browser.new
end
After do
$browser.close
end
Given ... (etc. - all the step defs here)