1

根据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');

但是有没有办法取消选中一个复选框?(无论是否检查)。

谢谢

4

2 回答 2

2

您可以使用底层的 DOM 爬虫(Symfony)。

  • 您通过提交按钮上的文本引用表单
  • 您可以选中或取消选中元素
  • 最后你提交表格

    $form = $this->getForm('SUBMIT');
    $form['single_cb']->untick();
    $form['multiple_cb'][0]->untick();
    $form['multiple_cb'][1]->tick();
    $form['multiple_cb'][2]->tick();
    $this->makeRequestUsingForm($form);
    
于 2015-07-25T23:51:56.453 回答
1

您现在还可以使用

$this->uncheck('#my-checkbox');

于 2015-10-22T20:27:44.030 回答