我对简单的标签进行了一些测试,或者结果是正确的,但是 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>