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 specs
with Capybara
/ Selenium
?
I tried the Teaspoon gem
, but apparently its only allowing accessing fixture URLs (as per this SO).
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.