Capybara / RSpec’has_css’匹配器不工作,但has_css

在带有 Ruby 2的Rails 3.2.14应用程序中,使用rspec-rails 2.14.0和capybara 2.1.0,以下功能规格导致失败:
require 'spec_helper'

feature 'View the homepage' do
  scenario 'user sees relevant page title' do
    visit root_path
    expect(page).to have_css('title',text: "Todo")
  end
end

失败的消息是:

1) View the homepage user sees relevant page title
 Failure/Error: expect(page).to have_css('title',text: "Todo")
 Capybara::ExpectationNotMet:
   expected to find css "title" with text "Todo" but there were no matches. Also
   found "",which matched the selector but not all filters.

标题元素和正确的文本在渲染页面

但是当我在功能规格中更改这一行时:

expect(page).to have_css('title',text: "Todo")

到这个:

page.has_css?('title',text: "Todo")

然后测试通过. [编辑 – 但是从@JustinKo看到这个测试不是一个很好的测试,因为它总是会通过]

如何获得has_css(…)表单的工作?是配置问题吗?

这是我的Gemfile的相关部分:

group :development,:test do
  gem 'rspec-rails' 
  gem 'capybara'
end

而我的spec / spec_helper.rb设置如下:

ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment",__FILE__)
require 'rspec/rails'
require 'rspec/autorun'
require 'capybara/rails'
require 'capybara/rspec'

Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }

RSpec.configure do |config|

  # out of the Box rspec config code ommitted

  config.include Capybara::DSL
end

任何人知道我可能做错了什么?

解决方法

默认情况下,Capybara仅查找“可见”元素.头元素(及其标题元素)并不真正被视为可见.这导致在has_css中标题元素被忽略.

您可以通过以下方式强制Capybara考虑不可见元素:visible =>假选项.

expect(page).to have_css('title',:text => 'Todo',:visible => false)

但是,使用has_title方法会更容易:

expect(page).to have_title('Todo')

相关文章

前言 最近项目做完,用户需要兼容IE,于是开展了兼容性的调整工作。边调整边想感叹IE真是个沙雕。。特将...
前言 有些属性不是很常用,但是工作中遇到了,记录一下,方便学习。 1、text-indent text-indent 属性规...
前言 政府网站会遇到公祭日的时候,网站整体颜色变灰的情况。今天正好调了一下。在此把解决方案分享给大...
需求 项目里有个消息中心,当有消息的时候,小铃铛图标可以晃两下,提示当前有信息。 实现过程 书写css...
html代码 css代码 效果图
在一些界面上 , 如果每个icon都去找图片还是相当麻烦的 , 直接使用css画出icon就方便的多了 , 下面两个...