我尝试在表单上编写测试输入日期的代码。我的使用输入日期格式为w3s。
public function testAddCustomer()
{
$this->browse(function (browser $browser) {
$browser->clickLink('เพิ่มลูกค้า')
->pause(500)
->assertPathIs('/customer/create')
->assertSee('ลงทะเบียนลูกค้า')
.
.
.
->select('product_id', '1500ml')
->type('product_date', '17082017')
->pause(500)
//->press('บันทึก')
;
});
}
我无法在测试Laravel Dusk上输入日期。
答案 0 :(得分:0)
您是否尝试使用"键"?
->keys('#date', '20171018')
将#date更改为输入选择器,如下所示: https://github.com/laravel/dusk/issues/104