so I've been digging through the output generated by my test, and adding in some other lines of code to see what does and doesn't get executed, and it's looking like it's not that codeception isn't following the redirects, it's that either it's not actually submitting the form when it clicks 'register' or it's hitting the proper url, but not using POST instead of GET.
It looks like $I->click('Register'); wasn't working, so in my view I changed my submit button to include an ID of 'register', then changed my test to use $I->click("#register'); instead. Test now passes.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community