Wait for JavaScript to run in Capybara tests
11 March 2022 (Updated 11 March 2022)
Suppose you have some JavaScript that needs to finish executing before a part of your DOM is ready to be interacted with. Let’s assume you’re using a library like Alpine.js to create a dropdown component. In this case, you need Capybara to wait for Alpine to initialize before your test can interact with the DOM.
Find out when your JavaScript has finished executing
Depending on what libraries you’re using, or how your JS code is executed, you’ll want to do something like this:
You can then define a RSpec helper method:
Now, you can use this helper whenever you need Capybara to wait until Alpine has finished initialized before doing anything. For example:
Tagged:
Rails testing
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment