I seem to be having trouble testing the slick javascript things I do with jQuery when using Capybara and Selenium.The expected behavior is for a form to be dynamically generated when a user clicks on
I need to change session during one cucumb开发者_开发技巧er scenario. For example Given session name is \"1st unauthenticated user\"
I am using capybara with cucumber in rails 2.3.9 application. Here is my html code <开发者_如何转开发;a href=\"http://twitter.com/dorelal\" target=\"_blank\" title=\"twitter\">
I am using cucumber and capybara along with rails 2.3.9. How do I verify the开发者_运维技巧 page title? I try to have a good page title for every GET request and would like to verify that in my cucum
I am using Rails 3 with Cucumber, Capybara and Factory_Girl.I am trying to test following the \"Show\" link for just one of the rows on an HTML table.I am using the syntax:
I am using 开发者_开发知识库capybara along with cucumber on a Rails 2.3.9 project. I have users index page and I have two records there. Using capybara how do I assert that there are only two records
I have a number of Cucumber scenarios which run with capybara on a project I am working on. Most of these scenarios start with a \"Given I am logged in\" step. Currently my implementation of this is:
In my rails application, I have a page with a link that execute a javascript function : <%= link_to_function(\"A开发者_如何学运维dd an address\", \"add_fields(this)\".html_safe) %>
I am trying to test an inplace editor using Cucumber/Capybara/Selenium stack, but my problem is that the editor is activated by clicking a div and not a link or button. I can not seem to figure out ho
开发者_JAVA百科I\'d like to suppress the initialization of TinyMCE inside my tests and can do this easily if the JavaScript can detect that I\'m running inside a Selenium-automated page.