Capybara is a web application testing framework for Rack applications, such as Rails, Sinatra and Merb.
Using Cucumber and Capybara, is there a way to verify that a string is NOT present on a page? For …
ruby-on-rails cucumber capybaraI have the following test in a request spec: page.should have_link('Edit user', :href => edit_users_path(@…
ruby-on-rails capybaraI just have learnt how cool RSpec and Cabybara is, and now working around it to learn writing actual test. …
ruby-on-rails rspec capybaraBasically, what I'm trying to do is click on a button that becomes visible when hovering another element (its parent). …
ruby-on-rails rspec capybaraI have the following helper method to input a string into an input field and press the enter key, but …
javascript jquery ruby-on-rails capybara selenium-chromedriverI have a file field that has opacity: 0 and is overlaping a fake button. Its a common css technic to …
capybara attachmentI don't know what I'm doing wrong, but every time I try to test for a redirect, I get this …
ruby-on-rails ruby rspec capybaraI'm having some trouble getting Chrome to work with RSpec/Capybara on Ubuntu 13.10 64-bit. By default it launches Firefox - …
google-chrome selenium rspec capybaraHow do you test if a div tag has a certain css style? I'm trying to test if it has …
ruby rspec capybaraHow do I use Capybara to check that a select box has certain values listed as options? It has to …
ruby-on-rails selenium cucumber capybara