我学习测试。我创建了这样的东西:
$this->browse(function ($browser) {
$browser->visit('/en/register')
->type('name', 'hello')
->type('email', 'asdsad@o2.pl')
->type('password', 'hello')
->type('password_confirmation', 'hello')
->click('register');
});
我有错误:
Tests \ Browser \ ExampleTest :: testBasicExample Facebook \ WebDriver \ Exception \ NoSuchElementException:否这样的元素:无法找到元素:{“方法”:“ css选择器”,“选择器”:“主体注册”} 为了进行测试,我想测试标准的注册表。