使用Laravel 4和PhpBrowser进行重定向时,代码测试失败

时间:2014-04-03 14:05:47

标签: testing laravel-4 codeception

与此相关: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的问题?

有任何变通方法吗?无法找到解决方案的最新信息。

0 个答案:

没有答案