Nearsoft\SeleniumClient\Timeouts::pageLoadTimeout PHP Method

pageLoadTimeout() public method

Sets page_load timeout
public pageLoadTimeout ( integer $milliseconds )
$milliseconds integer
    public function pageLoadTimeout($milliseconds)
    {
        $params = array('type' => 'page load', 'ms' => $milliseconds);
        $command = new Commands\Command($this->_driver, 'load_timeout', $params);
        $command->execute();
    }