E2E\WebDriverShortcuts::sleep PHP Method

sleep() protected method

Sleep (implicit wait) for some seconds.
protected sleep ( $seconds )
$seconds
    protected function sleep($seconds)
    {
        $this->driver->manage()->timeouts()->implicitlyWait($seconds);
        return $this;
    }