标签: cucumber capybara
我正在使用黄瓜和水豚以及导轨2.3.9。
如何验证页面标题?我尝试为每个GET请求提供一个好的页面标题,并希望在我的黄瓜测试中验证它。
答案 0 :(得分:3)
知道了。
Then /^I should see page title as "(.*)"$/ do |title| assert_equal title, page.find(:css, 'title').text end