Nearsoft\SeleniumClient\WebDriverWait::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $seconds = 1 )
    function __construct($seconds = 1)
    {
        if (!is_numeric($seconds)) {
            throw new \Exception("Must specify number");
        }
        $this->_seconds = $seconds;
    }