rspec检查存在自定义链接href到头部

时间:2015-06-15 12:23:41

标签: ruby-on-rails rspec capybara

我需要检查状态自定义链接到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"

我如何实现这个目标?

0 个答案:

没有答案