如何验证页面标题

时间:2010-09-12 01:29:50

标签: cucumber capybara

我正在使用黄瓜和水豚以及导轨2.3.9。

如何验证页面标题?我尝试为每个GET请求提供一个好的页面标题,并希望在我的黄瓜测试中验证它。

1 个答案:

答案 0 :(得分:3)

知道了。

Then /^I should see page title as "(.*)"$/ do |title|
  assert_equal title, page.find(:css, 'title').text
end