我在文本框中使用jquery制作日期格式。 并想知道如何在输入框中选择日期。
如何在phpunit selenium中设置当前日期格式的值?
答案 0 :(得分:0)
尝试使用php日期函数
$startDate = date('Y-m-d');
$endDate = date('Y-m-d', strtotime("+30 days"));
$this->type('name=from_date',$startDate);
$this->type('name=to_date',$endDate);