WebDriver\SauceLabs\SauceRest::getBrowsers PHP Method

getBrowsers() public method

Get currently supported browsers: /rest/v1/info/browsers (GET)
public getBrowsers ( string $termination = false ) : array
$termination string Optional termination (one of "all", "selenium-rc", or "webdriver')
return array
    public function getBrowsers($termination = false)
    {
        if ($termination) {
            return $this->execute('GET', 'info/browsers/' . $termination);
        }
        return $this->execute('GET', 'info/browsers');
    }