根据http://laravel.com/docs/5.1/testing#interacting-with-your-application在 Laravel 5.1 中,我可以使用:
$this->visit('/register')
->type('Taylor', 'name')
->check('terms')
->press('Register')
->seePageIs('/dashboard');
但是有没有办法取消选中一个复选框?(无论是否检查)。
谢谢