mirror of
https://github.com/silverstripe/silverstripe-behat-extension
synced 2024-10-22 17:05:32 +02:00
FIX Use usleep for fractions of a second
This commit is contained in:
parent
754b5e0969
commit
c460781971
@ -104,8 +104,8 @@ class LoginContext implements Context
|
||||
if ($btn->getText() !== 'Setup later') {
|
||||
continue;
|
||||
}
|
||||
// There's been issues clicking the button, so try waiting for a little bit
|
||||
sleep(0.3);
|
||||
// There's been issues clicking the button, so try waiting for 0.3 seconds
|
||||
usleep(0.3 * 1000000);
|
||||
$btn->click();
|
||||
$clicked = true;
|
||||
break;
|
||||
|
@ -510,7 +510,7 @@ abstract class SilverStripeContext extends MinkContext implements SilverStripeAw
|
||||
}
|
||||
|
||||
$state = $this->testSessionEnvironment->getState();
|
||||
$oldDatetime = \DateTime::createFromFormat('Y-m-d H:i:s', isset($state->datetime) ? $state->datetime : null);
|
||||
$oldDatetime = \DateTime::createFromFormat('Y-m-d H:i:s', $state->datetime ?? '');
|
||||
if ($oldDatetime) {
|
||||
$newDatetime->setTime($oldDatetime->format('H'), $oldDatetime->format('i'), $oldDatetime->format('s'));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user