Пример #1
0
  @Before
  public void setUp() throws Exception {
    DesiredCapabilities capabilities = DesiredCapabilities.iphone();
    capabilities.setCapability("build", "Parallel iOS Native App Test Suite");
    capabilities.setCapability("name", "Parallel iOS Native App Test Suite");
    capabilities.setCapability(MobileCapabilityType.PLATFORM_VERSION, platformVersion);
    capabilities.setCapability(MobileCapabilityType.DEVICE_NAME, deviceName);

    capabilities.setCapability(MobileCapabilityType.PLATFORM_NAME, "iOS");
    capabilities.setCapability(MobileCapabilityType.APP, "sauce-storage:UICatalog.zip");
    capabilities.setCapability(MobileCapabilityType.BROWSER_NAME, "");
    capabilities.setCapability(MobileCapabilityType.NEW_COMMAND_TIMEOUT, 180);
    capabilities.setCapability(MobileCapabilityType.DEVICE_READY_TIMEOUT, 60);
    capabilities.setCapability("deviceOrientation", "portrait");
    capabilities.setCapability("appiumVersion", "1.4.16");
    capabilities.setCapability("sendKeyStrategy", "setValue"); // fastest typing method
    capabilities.setCapability(
        "noReset",
        true); // to reuse the simulator/installed app between tests, rather than restart sim

    driver =
        new IOSDriver(
            new URL(
                "http://" + SAUCE_USERNAME + ":" + SAUCE_KEY + "@ondemand.saucelabs.com:80/wd/hub"),
            capabilities);
    sessionId = (driver.getSessionId()).toString();
    wait = new WebDriverWait(driver, 15);

    // wait until main view loads
    wait.until(
        ExpectedConditions.visibilityOf(
            driver.findElement(MobileBy.AccessibilityId("date_picker_button"))));
  }
Пример #2
0
  @Test
  public void datePickerTest() throws Exception {
    // Using Joda Time DateTime and DateTimeFormatter for this test!
    // Creating test data - using +3 days, hours and minutes
    // to make sure that all wheels are used
    DateTime testDate = new DateTime().plusDays(3).plusHours(3).plusMinutes(3);

    // hour of the day - short format
    // i tried to get it using .hourOfDay().getAsShortText() but it would only return 24hr format...
    DateTimeFormatter hourOfDayFormat = DateTimeFormat.forPattern("K");

    // half day of day - AM or PM
    // have to use a new formatter for this as there is no getter - let me know if I'm wrong!
    DateTimeFormatter halfDayFormat = DateTimeFormat.forPattern("aa");

    // short date - example "Sun Dec 27"
    // to be used with the date picker in gregorian calendar
    DateTimeFormatter shortDateFormat = DateTimeFormat.forPattern("E MMM d");

    // longDate - example pattern "Dec 27, 2015, 5:55 PM"
    // to be used for assertion at the end of the test
    DateTimeFormatter longDateFormat = DateTimeFormat.forPattern("MMM d, yyyy, K:mm aa");

    final String hour = testDate.toString(hourOfDayFormat);
    final String minute = testDate.minuteOfHour().getAsString();
    final String shortDate = testDate.toString(shortDateFormat);
    final String longDate = testDate.toString(longDateFormat);
    final String halfDay = testDate.toString(halfDayFormat);

    driver.findElement(MobileBy.AccessibilityId("date_picker_button")).click();
    // wait for Date Picker view to load
    wait.until(
        ExpectedConditions.visibilityOf(driver.findElement(MobileBy.className("UIAPickerWheel"))));

    List<WebElement> pickerWheel_elements =
        driver.findElements(MobileBy.className("UIAPickerWheel"));
    pickerWheel_elements.get(0).sendKeys(shortDate);
    pickerWheel_elements.get(1).sendKeys(hour);
    pickerWheel_elements.get(2).sendKeys(minute);
    pickerWheel_elements.get(3).sendKeys(halfDay);

    String dateValidation_element =
        driver.findElement(MobileBy.AccessibilityId("current_date")).getText();
    assertThat(dateValidation_element, is(longDate));
  }
Пример #3
0
  @Test
  public void textInputAlertTest() {
    driver.findElement(MobileBy.AccessibilityId("alert_views_button")).click();
    driver.findElement(MobileBy.AccessibilityId("text_entry_alert_button")).click();
    wait.until(ExpectedConditions.alertIsPresent());

    Alert alert = driver.switchTo().alert();
    String titleAndMessage = alert.getText();
    assertThat(
        titleAndMessage,
        is("A Short Title Is Best A message should be a short, complete sentence."));

    // input text
    String text_alert_message = "testing alert text input field";

    alert.sendKeys(text_alert_message);
    String alertTextInputField_value =
        driver.findElement(MobileBy.xpath("//UIAAlert//UIATextField")).getText();
    assertThat(alertTextInputField_value, is(text_alert_message));
  }
Пример #4
0
  @Test
  public void handlingSimpleAlertTest() {
    final String expected_alert_text =
        "A Short Title Is Best A message should be a short, complete sentence.";

    driver.findElement(MobileBy.AccessibilityId("alert_views_button")).click();
    // wait for alert view to load by waiting for "simple" alert button
    wait.until(
            ExpectedConditions.visibilityOf(
                driver.findElement(MobileBy.AccessibilityId("simple_alert_button"))))
        // and click on it
        .click();
    wait.until(ExpectedConditions.alertIsPresent());

    Alert alert = driver.switchTo().alert();
    String titleAndMessage = alert.getText();

    assertThat(titleAndMessage, is(expected_alert_text));
    alert.accept();
  }
 @Test
 public void MobileElementsByTest() {
   List<WebElement> elements = driver.findElements(MobileBy.AccessibilityId("UICatalog"));
   assertTrue(elements.size() > 0);
 }
 @Test
 public void MobileElementByTest() {
   WebElement element = driver.findElement(MobileBy.AccessibilityId("UICatalog"));
   assertNotNull(element);
 }
Пример #7
0
 public static Button byUIAutomator(String UIAutomator) {
   return locate(MobileBy.AndroidUIAutomator(UIAutomator));
 }