Skip to content

Instantly share code, notes, and snippets.

@testingbot
Created May 2, 2012 19:38
Show Gist options
  • Save testingbot/2579632 to your computer and use it in GitHub Desktop.
Save testingbot/2579632 to your computer and use it in GitHub Desktop.
test with iPhone and Java
import junit.framework.TestCase;
import org.openqa.selenium.*;
import org.openqa.selenium.remote.*;
import java.net.URL;
import java.util.concurrent.TimeUnit;
public class SimpleTest extends TestCase {
private WebDriver driver;
public void setUp() throws Exception {
DesiredCapabilities capabillities = DesiredCapabilities.iphone();
capabillities.setCapability("platform", Platform.MAC);
capabillities.setCapability("name", "Testing iPhone");
this.driver = new RemoteWebDriver(
new URL("http://key:secret@hub.testingbot.com:4444/wd/hub"),
capabillities);
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
public void testSimple() throws Exception {
this.driver.get("http://www.google.com");
assertEquals("Google", this.driver.getTitle());
}
public void tearDown() throws Exception {
this.driver.quit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment