"Listening" to AJAX calls from Capybara / Selenium - Rails

277 Views Asked by At

I have an app which makes AJAX calls on certain events (e.g. .click). Is there a way to "listen" to real AJAX requests from feature specswith Capybara / Selenium?

I tried the Teaspoon gem, but apparently its only allowing accessing fixture URLs (as per this SO).

1

There are 1 best solutions below

0
On BEST ANSWER

No you can't listen to events in the browser from Capybara, you can only look for changes that occur as a result of those events. ie. If clicking a button makes an ajax request and then changes part of the page, check for the element that is added/removed from the page.