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:
parent
448a221ea0
commit
3e7281e620
@ -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');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user