我对简单标签进行了一些测试,结果是正确的但是rspec测试失败了。我可以使用save_and_open_page
验证输出是否正确但我无法理解为什么rspec测试不会将其视为有效输出!?
你能发现什么是错的吗?谢谢!
规范代码
it { save_and_open_page; should have_selector('title', text: "CredSimple - Sign in") }
产生的失败消息
Failure/Error: it { save_and_open_page should have_selector('title', text: "CredSimple - Sign in") }
expected css "title" with text "CredSimple - Sign in" to return something
save_and_open_page确认该页面具有测试所寻求的标题:
<title>CredSimple - Sign in</title>