in gepard-selenium/src/main/java/com/epam/gepard/selenium/browsers/WebDriverUtil.java [284:299]
public BrowserEnum getBrowserType(final String browserString) {
BrowserEnum type = BrowserEnum.Unknown;
if (isFireFox(browserString)) {
type = BrowserEnum.FireFox;
}
if (isSafari(browserString)) {
type = BrowserEnum.Safari;
}
if (isInternetExplorer(browserString)) {
type = BrowserEnum.InternetExplorer;
}
if (isGoogleChrome(browserString)) {
type = BrowserEnum.GoogleChrome;
}
return type;
}