Trying to test following input element
<input name="birthdate" id="#birthdate" class="input" type="date">
Through Laravel Dusk I've tried
$browser->type('birthdate', now()->toDateString())
end even
->type('birthdate', '31-01-2003')
->type('birthdate', '31-Jan-2003')
No data is inserted and even Submit button is not pressed. Dump reveals that I will remain on the form without submitting.
Chrome version:
(Session info: headless chrome=71.0.3578.98)
(Driver info: chromedriver=2.45.615291
"laravel/dusk","version": "v4.0.4",
Thanks
type="text"
? – Jonas Staudenmeir