WebDriver\SauceLabs\SauceRest::getJobs PHP Méthode

getJobs() public méthode

Get jobs: /rest/v1/:userId/jobs (GET)
public getJobs ( boolean $full = null ) : array
$full boolean
Résultat array
    public function getJobs($full = null)
    {
        $query = http_build_query(array('full' => isset($full) && $full ? 'true' : null));
        return $this->execute('GET', $this->userId . '/jobs' . (strlen($query) ? '?' . $query : ''));
    }