我使用Capybara, Cucumber和Selenium-Webdriver进行基本的web测试。如果测试失败,我希望捕获失败消息并将其发送到单独的日志文件。
Cucumber提供钩子来捕获场景失败后的失败消息(来自他们的wiki):
After do |scenario|
if scenario.failed?
subject = "[Project X] #{scenario.exception.message}"
send_failure_email(subject)
end
end
然而,当我在我的features/support/support.rb
文件中实现这一点时,我得到一个no method错误:
undefined method `exception' for #<Cucumber::RunningTestCase::Scenario:0x007fc7b4380968>
这个错误是我的设置的结果,还是这是黄瓜2.0特有的错误?
以下是我的features/support/support.rb
代码:
require 'capybara/cucumber'
Capybara.default_driver = :selenium
After do |scenario|
if scenario.failed?
puts scenario.exception.message
end
end
以下是我的features/step_definitions/step_definition.rb
代码:
Given(/^I am on the Google homepage$/) do
visit 'http://www.google.com'
end
Then(/^I will search for "(.*?)"$/) do |searchText|
fill_in 'lst-ib', :with => searchText
end
Then(/^I should see "(.*?)"$/) do |expectedText|
page.should have_content(expectedText)
end
Then(/^I will click the Product link$/) do
click_link('Product')
end
以下是我的features/findGameSparks.feature
代码:
Feature: Find the GameSparks Website
Scenario: Search for the website
Given I am on the Google homepage
Then I will search for "GameSparks"
Then I should see "A NON-EXISTENT STRING CAUSING TEST FAILURE!!!!"
Then I will click the Product link
这里是我使用的所有内容的版本号:
OSX 10.10.1
ruby 2.2.1p85
rvm 1.26.11
gem 2.4.6
cucumber 2.0.0
cucumber-core 1.1.3
capybara 2.4.4
selenium-webdriver 2.45.0
此错误已在4月1日的提交中修复:https://github.com/cucumber/cucumber/commit/e92917c8f10a4907dedf26d77665116b69f3e3b9
Cucumber的最新版本是2.0.0
,于3月27日发布,所以看起来修复还没有发布。
你可以指向Gemfile中的github repo来获取最新的可用代码:
gem 'cucumber', git: 'https://github.com/cucumber/cucumber.git'
请注意,像这样运行"预发布"代码可能会导致其他问题,例如,如果黄瓜的提交者弄乱了主分支。