通过laravel黄昏测试输入类型日期

时间:2019-01-06 21:11:42

标签: laravel testing automated-tests laravel-dusk

尝试测试以下输入元素

<input name="birthdate" id="#birthdate" class="input" type="date">

通过Laravel黄昏 我尝试过

$browser->type('birthdate', now()->toDateString())

收支平衡

->type('birthdate', '31-01-2003')

->type('birthdate', '31-Jan-2003')

enter image description here enter image description here

没有插入任何数据,甚至没有按下Submit按钮。转储显示我将保留在表单上,​​而无需提交。

Chrome版本:

(Session info: headless chrome=71.0.3578.98)
(Driver info: chromedriver=2.45.615291 
"laravel/dusk","version": "v4.0.4",

谢谢

1 个答案:

答案 0 :(得分:0)

需要正确格式化

->type('birthdate', $newuser->birthdate->format('mdY'))