- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 RSpec 3 和 Capybara 2.2.0 编写一个简单的登录测试,但我终究无法弄清楚为什么这个测试总是失败。
我已经设法确定测试实际上并没有点击按钮,但它认为是。另一件奇怪的事情是,即使这不是 javascript 表单,在将 capybara 设置为 js: true 的情况下运行测试也会呈现成功的测试。我错过了什么?
GemFile
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.1'
gem 'bootstrap-sass', '~> 3.0.2.0'
gem 'bcrypt-ruby', '3.1.2'
gem 'faker', '1.1.2'
gem 'will_paginate', '3.0.4'
gem 'will_paginate-bootstrap', '1.0.0'
gem 'holder_rails', '2.2.0'
group :development, :test do
gem 'sqlite3', '1.3.8'
gem 'rspec-rails', '~> 3.0.0.beta'
end
group :test do
gem 'selenium-webdriver', '2.35.1'
gem 'capybara'
gem 'factory_girl_rails', '4.2.0'
gem 'cucumber-rails', '1.4.0', :require => false
gem 'database_cleaner', github: 'bmabey/database_cleaner'
gem 'launchy'
gem 'growl', '1.0.3'
end
gem 'sass-rails', '>= 3.2'
gem 'uglifier', '2.1.1'
gem 'coffee-rails', '4.0.1'
gem 'jquery-rails', '3.0.4'
gem 'turbolinks', '1.1.1'
gem 'jbuilder', '1.0.2'
group :doc do
gem 'sdoc', '0.3.20', require: false
end
group :production do
gem 'pg', '0.15.1'
gem 'rails_12factor', '0.0.2'
end
*Authentication_pages_spec.rb*
require 'spec_helper'
describe "Authentication" do
subject { page }
describe "signin page" do
before { visit signin_path }
it { should have_content('Sign in') }
it { should have_title('Sign In') }
end
describe "signin", :type => :feature do
before :each do
visit signin_path
end
describe "with invalid information" do
specify do
click_button 'Sign in'
should have_selector('div.alert.alert-danger', text: 'Invalid')
should have_title('Sign In')
end
end
describe "with valid information" do
let(:user) { FactoryGirl.build(:user) }
before do
fill_in "Username", with: user.username
fill_in "Password", with: user.password
end
specify do
click_button 'Sign in'
save_and_open_page
# current_path.should == root_path
should_not have_title("Sign In")
should have_content("dreams")
end
end
end
end
Sessions.rb
class SessionsController < ApplicationController
def new
end
def destroy
end
def create
user = User.find_by(username: params[:session][:username].downcase)
if user && user.authenticate(params[:session][:password])
sign_in user
redirect_to root_path
else
flash.now[:danger] = 'Invalid email/password combination'
render 'new'
end
end
end
结果:
Failures:
1) Authentication signin with valid information should not have title "Sign In"
Failure/Error: should_not have_title("Sign In")
expected there not to be title "Sign In" in "Adventure|Byte Games - Sign In"
# ./spec/features/authentication_pages_spec.rb:39:in `block (4 levels) in <top (required)>'
2) Authentication signin with invalid information should have css "div.alert.alert-danger" with text "Invalid"
Failure/Error: should have_selector('div.alert.alert-danger', text: 'Invalid')
Capybara::ExpectationNotMet:
expected to find css "div.alert.alert-danger" with text "Invalid" but there were no matches
# ./spec/features/authentication_pages_spec.rb:23:in `block (4 levels) in <top (required)>'
添加登录 View (new.html.erb)
<% provide(:title, "Sign In") %>
<h1>Sign in</h1>
<div class = "container">
<%= form_for(:session, url: sessions_path) do |f| %>
<form role = "form">
<div class="col-md-6 col-md-offset-3">
<div class="form-group">
<%= f.label :username %>
<%= f.text_field :username, class: "form-control" %>
</div>
<div class="form-group">
<%= f.label :password %>
<%= f.password_field :password, class: "form-control"%>
</div>
<div class="form-group">
<%= f.submit "Sign in", class: "btn btn-lg btn-primary" %>
</div>
</div>
</form>
<% end %>
</div>
所以事实证明我在表单上进行了格式化,以下 View 似乎有效:
<% provide(:title, "Sign In") %>
<h1>Sign in</h1>
<div class = "container">
<div class="col-md-6 col-md-offset-3">
<%= form_for(:session, url: sessions_path) do |f| %>
<%= f.label :username %>
<%= f.text_field :username, class: "form-control" %>
<%= f.label :password %>
<%= f.password_field :password, class: "form-control"%>
<%= f.submit "Sign in", class: "btn btn-lg btn-primary" %>
<% end %>
</div>
</div>
最佳答案
我个人不会使用 click_button 方法。它可能很不稳定。
我喜欢用这种东西
page.find('the.css.for.the.button').trigger('click')
使用 trigger('click') 的原因是它在 javascript 中更可靠。
希望对您有所帮助。
关于javascript - 没有 Javascript 的 capybara Click_Button 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20386358/
我有一个文件字段,其中包含 opacity: 0并且正在重叠一个假按钮。它是一种常见的 css 技术,可以伪造一种在不同浏览器中一致显示的“上传按钮”。 Capybara 不允许我打电话 attach
我正在尝试为我的 ROR 应用程序编写一些 capybara cucumber 脚本,但发现很难通过每次都进行更改并运行完整功能来使脚本正确。 是否有适用于 Capybara 的 REPL(Read
像这样的html 我的代码是 attach_file("ok","./fileset/publisher/upload_pic.jpg") 但我失败了: 失败: Capybara::Element
我想在我的代码中设置不同的 Capybara 等待时间,具体取决于它们通常需要多长时间才能完全加载?我是否必须重复更改 Capybara.default_wait_time 还是有更好的方法? 最佳答
在 Capybara 中,是否可以在新窗口而不是当前窗口中打开链接? 最佳答案 如果此元素是链接,您只需获取其 href 并在新窗口中打开它: url = find('.some_link')[:hr
对于编辑记录的集成测试,我尝试用新文本替换表单输入字段中的现有文本: find("input[@id='course_title']").set("a safer workplace") 但是,每次我
我有一个动态生成的表单,如下所示: Do you like Pizza? [ ] Yes [ ] No HTML 看起来像这样: Do you like Pizza?
我正在尝试填写两个标有 id="admin_passsword"的文本框。我可以轻松访问第一个文本框,但由于除了占位符和上面的标签之外没有任何区别,我不知道如何访问第二个文本框来填写该字段。
我是一个新手,尝试使用 Capybara 测试我的 Rails 项目,但是当我尝试从我的 div 中检测一些字符串时,我对 page 和 page.body 的含义感到困惑:(in :js=>true
我在使用 rspec、capybara、capybara-webkit 和 timecop 的某些集成规范中看到错误。 Capybara::FrozenInTime: time appears
我使用以下 html 堆栈创建了自定义上传表单: 文件字段通过 display: none 的 css 隐藏属性(property)。因此,当她单击标签(自定义样式)时,用户会调用文件
假设我在 Mac OS X 上安装了 PhantomJS,我可以编写一个普通的旧 Ruby 脚本(没有 Cucumber,没有 RSpec)来驱动 Poltergeist 吗?换句话说,我想要一些 g
我希望单击我的测试应用程序上出现的弹出消息(如果存在)。我对 capybara 很陌生,似乎找不到办法做到这一点。我以前有过使用 watir 的经验,如果我使用 watir 的话,会是这样的: if
我目前使用 Watir-webdriver 进行所有前端测试,但开发团队使用 Capybara 在 Jenkins CI 上运行测试。我们都使用相同的 Cucumber 功能。 值得我们进行两次有效的
Capybara的API似乎不支持配置HTTP代理。有没有什么方法可以和它一起使用? 上下文:我使用 capybara 和 cucumber 来测试 Rails 应用程序,并使用 akephalos
我很好奇是否有更好的方法来测试页面中是否存在完整的 URL(包括协议(protocol))。 使用 Capybara 2.10.2 和 Rails 5.0.0.1,我有以下设置: rails_help
我有以下测试: it 'shows the current quantity of items inside cart' do item = create(:item) visit
我正在使用 Capybara 自动截取一些屏幕截图。 我需要 chrome 浏览器最大化运行,但我似乎无法让它工作。 基于 https://sites.google.com/a/chromium.or
下面是两个单选按钮的 html 代码,它们只是“值”属性不同 我想做的是选择“value =2”的单选按钮 我尝试使用“选择(“AmountOption”)”选择第一个单选按钮,但我想选择第二个单
我尝试使用几种变体来检查 Capybara 的 200 Ok HTTP 响应,但没有一个变体不起作用: response.should be_success page.status.should be
我是一名优秀的程序员,十分优秀!