Java examples for HTML:selenium
Create selenium Remote Web Driver
import java.net.MalformedURLException; import java.net.URL; import org.openqa.selenium.WebDriver; import org.openqa.selenium.remote.DesiredCapabilities; import org.openqa.selenium.remote.RemoteWebDriver; public class BsSafariPopupTest { public static void main(String[] args) throws MalformedURLException, InterruptedException { DesiredCapabilities capability = DesiredCapabilities.safari(); capability.setCapability("build", "automate_popup_test"); capability.setCapability("browserstack.debug", true); WebDriver driver = new RemoteWebDriver( new URL( "http://BS_USERNAME:BS_AUTHKEY@hub.browserstack.com/wd/hub"), capability);/*from w ww . j a v a 2 s .c o m*/ driver.get("http://www.your server.com"); Thread.sleep(5000); driver.quit(); } }