My Ruby on Rails application is mostly contained behind a login page. I'd still like to be able to stress test these pages, as they have some heavy database access.
Sending the username and password into a post for my login isn't difficult, but the Authenticity Token keeps changing, which makes my tests unrepeatable.
Is there a way to solve this problem while also maintaining an accurate production-esque environment?
I'd appreciate any help. Thanks!