Related to this:Why doesn't Codeception's PhpBrowser follow a "Reload" header?
I am using Laravel 4.1
I cant get tests to pass that are redirecting to another page, e.g.:
$I = new TestGuy($scenario);
$I->wantTo('be able to log in via the login form');
$I->amOnPage('/login');
$I->fillField('Email','test@student.com');
$I->fillField('Password','password');
$I->click('confirm');
$I->canSee('WELCOME Test Student');
Test fails with ' Redirecting to http:// ....' instead of the page it redirects to.
The redirects are being performed by Redirect::route($name)
Seems to be an issue with PhpBrowser?
Any workarounds? Can't find any recent info with a solution.