开发者

How to verify the page title

开发者 https://www.devze.com 2023-01-16 00:23 出处:网络
I am using cucumber and capybara along with rails 2.3.9. How do I verify the开发者_运维技巧 page title? I try to have a good page title for every GET request and would like to verify that in my cucum

I am using cucumber and capybara along with rails 2.3.9.

How do I verify the开发者_运维技巧 page title? I try to have a good page title for every GET request and would like to verify that in my cucumber tests.


Got it.

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

精彩评论

暂无评论...
验证码 换一张
取 消