在phpunit selenium中选择当前日期和其他日期?

时间:2014-06-30 05:10:31

标签: selenium-webdriver phpunit

我在文本框中使用jquery制作日期格式。 并想知道如何在输入框中选择日期。

如何在phpunit selenium中设置当前日期格式的值?

1 个答案:

答案 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);