Include additional space in input

It seems that last char is sometimes lost and space is harmless

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2017-09-28 11:10:36 +02:00
parent 448a221ea0
commit 3e7281e620

View File

@ -113,9 +113,9 @@ class PMA_SeleniumDbEventsTest extends PMA_SeleniumBase
$this->select($this->byName("item_interval_field"))
->selectOptionByLabel("MINUTE_SECOND");
$this->byName("item_starts")->value(date('Y-m-d', strtotime('-1 day')));
$this->byName("item_starts")->value(date('Y-m-d', strtotime('-1 day')) . ' ');
$this->byName("item_ends")->value(date('Y-m-d', strtotime('+1 day')));
$this->byName("item_ends")->value(date('Y-m-d', strtotime('+1 day')) . ' ');
$ele = $this->waitForElement('byName', "item_interval_value");
$ele->value('1');