与此相关:Why doesn't Codeception's PhpBrowser follow a "Reload" header?
我正在使用Laravel 4.1
我无法通过重定向到另一个页面的测试,例如:
$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');
测试失败时使用'重定向到http:// ....'而不是重定向到的页面。
重定向由Redirect :: route($ name)
执行似乎是PhpBrowser的问题?
有任何变通方法吗?无法找到解决方案的最新信息。