我需要检查状态自定义链接到head
标记。
我找到了许多需要将一些文本设置为link
标签的示例
比如
should have_link('Settings', href: edit_user_path(user))
但我需要检查attr href exists
我的代码:
it 'custom href presence to head tag' do
within('head') do
link = page.find(:xpath, "//link[@href='#{my_custom_url}']")
...
end
end
但我看到错误Capybara::ElementNotFound:Unable to find css "head"
我如何实现这个目标?