All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.teststeps.thekla4j.browser.selenium.SafariBrowser Maven / Gradle / Ivy

package com.teststeps.thekla4j.browser.selenium;

import com.teststeps.thekla4j.browser.config.BrowserConfig;
import com.teststeps.thekla4j.browser.core.Browser;
import org.openqa.selenium.safari.SafariDriver;

public class SafariBrowser {

  public static Browser with(BrowserConfig config) {
    return new SeleniumBrowser(new SafariDriver());
  }

  public static Browser withoutOptions() {
    return new SeleniumBrowser(new SafariDriver());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy