0
votes
2answers
50 views

Why doesn't Capybara raise exception when block is passed to find() but raises one when block is passed to within

We are having some troubles with our AJAX specs and within / find. I'd like to do the following: it 'allows to load more search results if there are any', focus: true, js: true do fill_in ...
0
votes
1answer
151 views

RSpec, Capybara and an ajax request with rails

So I have javascript method in my view that looks like this: window.getWeatherData = function () { $.getJSON('/weather.json?building=RSF', function (response) { console.log(response) ...
0
votes
2answers
189 views

Capybara ajax request parameters

I am using capybara for testing behavior of my application. There is some js code on page, which executes on page load. It sends ajax request to server. I want to test parameters of that request, how ...
3
votes
1answer
161 views

Test loading message content before AJAX request is completed with Capybara

I see a lot of questions and answers about Capybara not waiting for an AJAX request to complete before testing for content, but I need to do the opposite: I want to test that a loading message is ...
0
votes
1answer
143 views

cucumber asynchronous javascript error

Whenever the "save" button from compositions/index.html.erb is pressed, an ajax request is being completed and a row is appended that shows the Composition.content string in that same page. But my ...
0
votes
1answer
124 views

How to test rails javascript and ajax without a browser

When i use RSpec with Capybara to test my rails javascript page, I get the following error: Selenium::WebDriver::Error::WebDriverError: Could not find Firefox binary (os=linux). Actually ...
1
vote
0answers
197 views

Capybara/Rspec listening for ajax response explicitly not waiting for x seconds

I'm trying to write an end-to-end test for something that happens in the UI after an ajax request returns a certain JSON response. Basically, I want to test the whole stack by creating an active ...
0
votes
0answers
153 views

Cucumber + Capybara in AJAX and update html

I have a dropdown which when the value is changed it does an AJAX call and renders some new content in a sub dropdown. When doing a select of the first drop down in capybara, even though it does the ...
0
votes
1answer
138 views

Capybara JS test fails for page.all

I'm trying to implement a request spec using Capybara, RSpec and JS (using Webkit). I have a test that sends of a JS request (jQuery.load) which will return a page, which will be embedded in the ...
0
votes
1answer
341 views

Rspec not executing AJAX calls

I'm trying to test a link that calls a controller action using ajax. Essentially, when the user clicks on "Follow", he will be associated with the company and a render partial will be executed with ...
3
votes
1answer
895 views

Capybara click_button works, but how do I evaluate the JSON response?

Soo, if Capybara can interface with the DOM and my app makes a form submit via AJAX and returns some JSON, can Capybara see that at all? I'm not finding any way to get to the AJAX response in the ...
1
vote
1answer
108 views

Latest greatest Rails tool set for integration testing with ajax? [closed]

I'd like my project to have integration tests that can work with ajax pages, and I was wondering if as of today there's a great combination of tools / gems that can help one be successful at it. It's ...
2
votes
1answer
499 views

Use capybara to assert something happened via ajax

I'm still on Rails 2.3.x and using Rspec, Capybara and Steak to do some acceptance testing. I want to be able to write 2 tests, one using the js driver and one using plain old rack-test. Is it ...
3
votes
2answers
3k views

Capybara not waiting for ajax request to complete

I am trying to test selecting an option from select tag (these options are fetched from a remote database server). During normal interation with the website, it does not take more than a fraction of a ...
0
votes
1answer
158 views

How should I approach testing controllers in AJAX Rails 3 application?

Here's the thing, I have Article and Category models, where obviously article belongs to one category. I want to have the option of creating a new category in the new Article's form, so I decided to ...
0
votes
1answer
813 views

How to test AJAX features/XHR requests with Capybara/Steak?

I test my Rails app's features with Steak and it works great. However, I realized that AJAX calls (using UJS and jQuery) would not work since Capybara doesn't do XHR request. Is there a way to do ...
0
votes
1answer
387 views

Steak capybara dynamic ajax element not found

I am using capybara 0.4.1 I am having a problem for finding an element which is being dynamically loaded via ajax. How do i use a capybara finder statement so that i can find an element loaded with ...
1
vote
0answers
730 views

How can I make cucumber with capybara and selenium fire Ajax on page load

I have the following as a cucumber story: @javascript Scenario: Showing the page Given I am a logged in user And there is a member with a site And I go to the home page ..... When that ...