Created
October 11, 2010 13:49
-
-
Save moustaki/620531 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When /^I am on (.+)$/ do |page_name| | |
begin | |
visit path_to(page_name) | |
rescue Mechanize::ResponseCodeError => e | |
$stderr.puts "ERROR: " + e.page.root.xpath('//pre[@id="message"]/text()').to_s | |
raise Mechanize::ResponseCodeError.new e.page | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment