Example usage for org.openqa.selenium By className

List of usage examples for org.openqa.selenium By className

Introduction

In this page you can find the example usage for org.openqa.selenium By className.

Prototype

public static By className(String className) 

Source Link

Document

Find elements based on the value of the "class" attribute.

Usage

From source file:com.ecofactor.qa.automation.newapp.page.impl.TstatControlUIPageImpl.java

License:Open Source License

/**
 * Gets the available modes.//from  w  ww.ja v  a 2  s.co  m
 * @return the available modes
 */
public List<String> getAvailableModes() {

    List<String> availableModeList = new ArrayList<String>();
    isDisplayedBySubElement(getDriver(), getCurrentThermostatContainer(),
            By.className(THERMOSTAT_BTN_CONTAINER), TINY_TIMEOUT);
    WebElement thermostatElement = getElementBySubElement(getDriver(), getCurrentThermostatContainer(),
            By.cssSelector("." + THERMOSTAT_BTN_CONTAINER), TINY_TIMEOUT);
    List<WebElement> thermostatElementList = getElementsBySubElement(getDriver(), thermostatElement,
            By.cssSelector("." + HVAC_MODE_BTN), TINY_TIMEOUT);
    for (WebElement webElement : thermostatElementList) {
        availableModeList.add(webElement.getAttribute(ATTR_VALUE));
    }
    return availableModeList;
}

From source file:com.ecofactor.qa.automation.newapp.page.impl.TstatControlUIPageImpl.java

License:Open Source License

/**
 * Gets the opacity value for controls./*from  w ww  .  j a  va  2  s . c  om*/
 * @return the opacity value for controls
 * @see com.ecofactor.qa.automation.mobile.page.ThermostatControlPage#getOpacityValueForControls()
 */
@Override
public Double getOpacityValueForControls() {

    isDisplayed(getDriver(), By.className("thermostat_control_container"), SHORT_TIMEOUT);
    LogUtil.setLogString("Check opacity value for controls.", true, CustomLogLevel.HIGH);
    return getOpacityValueForClass("thermostat_control_container");
}

From source file:com.ecofactor.qa.automation.newapp.page.impl.TstatControlUIPageImpl.java

License:Open Source License

/**
 * Opacity value.//  ww w.j  a  v  a2 s.  com
 * @param containerClassName the container class name
 */
private void opacityValue(String containerClassName) {

    isDisplayed(getDriver(), By.className(containerClassName), SHORT_TIMEOUT);
    WebElement thermostatControlContainer = getElement(getDriver(), By.className(containerClassName),
            SHORT_TIMEOUT);
    List<WebElement> buttonElements = getElementsBySubElement(getDriver(), thermostatControlContainer,
            By.tagName(TAG_INPUT), SHORT_TIMEOUT);
    int loop = 0;
    for (WebElement element : buttonElements) {
        String classname = element.getAttribute("className");
        if (element.getAttribute(ATTR_TYPE).endsWith("button") && classname != null && !classname.isEmpty()) {
            String classNameSplit = classname.contains(SELECTED) ? classname.split(" ")[0] : classname;
            JavascriptExecutor js = (JavascriptExecutor) getDriver();
            Object val = js.executeScript(
                    "return window.document.defaultView.getComputedStyle(window.document.getElementsByClassName('"
                            + classNameSplit + "')['" + loop + "']).getPropertyValue('background-color');");
            loop++;
            String opacity = val.toString();
            opacity = opacity.substring(opacity.lastIndexOf(",") + 1);
            opacity = opacity.substring(0, opacity.indexOf(")"));

            Double currentOpacity = Double.valueOf(opacity.toString().trim());
            if (classname.contains(SELECTED)) {
                final Double opacityValueSelected = 0.5;
                LogUtil.setLogString(
                        "Verify the opacity for '" + element.getAttribute(ATTR_VALUE) + "' (Button selected)",
                        true, CustomLogLevel.LOW);
                LogUtil.setLogString("Expected opacity in between 0.48 and 0.0", true, CustomLogLevel.HIGH);
                LogUtil.setLogString("The opacity in UI is :" + currentOpacity, true, CustomLogLevel.HIGH);
                Assert.assertTrue(
                        (opacityValueSelected > currentOpacity && currentOpacity >= 0.0)
                                || opacityValueSelected.equals(currentOpacity),
                        "Opacity value for buttons differ.");
            } else {
                LogUtil.setLogString("Verify the opacity for '" + element.getAttribute(ATTR_VALUE)
                        + "' button, (Button Not selected)", true);
                LogUtil.setLogString("Expected opacity in between 0.0 and 0.40", true, CustomLogLevel.HIGH);
                LogUtil.setLogString("The opacity in UI is :" + currentOpacity, true, CustomLogLevel.HIGH);
                final Double opacityValueSelected = 0.40;
                Assert.assertTrue(
                        (opacityValueSelected > currentOpacity && currentOpacity >= 0.0)
                                || currentOpacity.equals(opacityValueSelected),
                        "Opacity value for buttons differ.");
            }

        }

    }
}

From source file:com.ecofactor.qa.automation.newapp.page.impl.TstatControlUIPageImpl.java

License:Open Source License

/**
 * Gets the rgb./*w w w .ja  v  a 2s  . c  o  m*/
 * @param containerClassName the container class name
 * @param mode the mode
 * @return the rgb
 */
private String getRgb(String containerClassName, String mode) {

    isDisplayed(getDriver(), By.className(containerClassName), SHORT_TIMEOUT);
    WebElement thermostatControlContainer = getElement(getDriver(), By.className(containerClassName),
            SHORT_TIMEOUT);
    List<WebElement> buttonElements = getElementsBySubElement(getDriver(), thermostatControlContainer,
            By.tagName(TAG_INPUT), SHORT_TIMEOUT);
    int loop = 0;
    String colorValue = null;
    for (WebElement element : buttonElements) {
        String classname = element.getAttribute("className");
        if (element.getAttribute(ATTR_TYPE).endsWith("button") && classname != null && !classname.isEmpty()) {
            String classNameSplit = classname.contains(SELECTED) ? classname.split(" ")[0] : classname;
            JavascriptExecutor js = (JavascriptExecutor) getDriver();
            Object val = js.executeScript(
                    "return window.document.defaultView.getComputedStyle(window.document.getElementsByClassName('"
                            + classNameSplit + "')['" + loop + "']).getPropertyValue('background-color');");
            loop++;
            String rgbValue = val.toString();
            rgbValue = rgbValue.substring(5, 16);
            if (classname.contains(SELECTED) && mode.equalsIgnoreCase("cool")) {
                LogUtil.setLogString(
                        "Verify the Color for '" + element.getAttribute(ATTR_VALUE) + "' (Button selected)",
                        true, CustomLogLevel.LOW);
                LogUtil.setLogString("Expected Color " + COOL_MODE_COLOR, true, CustomLogLevel.MEDIUM);
                LogUtil.setLogString("The Color in UI is :" + rgbValue, true, CustomLogLevel.MEDIUM);
                colorValue = rgbValue;
            } else if (classname.contains(SELECTED) && mode.equalsIgnoreCase("heat")) {
                LogUtil.setLogString(
                        "Verify the Color for '" + element.getAttribute(ATTR_VALUE) + "' (Button selected)",
                        true, CustomLogLevel.LOW);
                LogUtil.setLogString("Expected Color " + HEAT_MODE_COLOR, true, CustomLogLevel.MEDIUM);
                LogUtil.setLogString("The Color in UI is :" + rgbValue, true, CustomLogLevel.MEDIUM);
                colorValue = rgbValue;
            }
        }
    }
    return colorValue;

}

From source file:com.ecofactor.qa.automation.util.mail.Gmail.java

License:Open Source License

/**
 * Gets the changed password./*from w  w  w .j  a v a2 s  .  co  m*/
 * @param url the url
 * @param emailUserName the email user name
 * @param emailPassword the email password
 * @param subject the subject
 * @param boldIndex the bold index
 * @param pwdIndex the pwd index
 * @return the changed password
 */
public String getChangedPassword(String url, String emailUserName, String emailPassword, String subject,
        int boldIndex, int pwdIndex) {

    WebDriver driver = DriverConfig.getDriver();
    if (DriverConfig.getDriver() == null) {
        driverConfig.loadDriver();
        driver = DriverConfig.getDriver();
    }

    String tempPassword = null;

    largeWait();
    DriverConfig.setLogString("Load Email portal URL at change password", true);
    driver.navigate().to(url + "" + emailUserName);
    largeWait();

    boolean session = isDisplayedById(driver, "Passwd", MEDIUM_TIMEOUT);
    if (session) {
        DriverConfig.setLogString(
                "Enter username and password for Email(" + emailUserName + "/" + emailPassword + ")", true);
        driver.findElement(By.id("Email")).sendKeys(emailUserName);
        driver.findElement(By.id("Passwd")).sendKeys(emailPassword);

        mediumWait();
        WebElement signInButtonElement = driver.findElement(By.id("signIn"));
        DriverConfig.setLogString("click Sign In button", true);
        signInButtonElement.click();
        largeWait();
        boolean button = isDisplayedById(driver, "no-button", MEDIUM_TIMEOUT);
        if (button) {
            WebElement buttonElement = driver.findElement(By.id("no-button"));
            buttonElement.click();
            mediumWait();
        }
    }

    isDisplayedByCSS(driver, ".aio.UKr6le", MEDIUM_TIMEOUT);
    DriverConfig.setLogString("Click Inbox.", true);
    WebElement inboxElement = DriverConfig.getDriver().findElement(By.partialLinkText("Inbox"));
    inboxElement.click();
    largeWait();

    DriverConfig.setLogString("Click Subject of Email.", true);
    WebElement webElement = driver.findElement(By.cssSelector(".ae4.UI.UJ"));
    List<WebElement> tagElement = webElement.findElements(By.tagName(TAG_BOLD));
    WebElement firstElement = tagElement.get(0);
    if (firstElement != null && firstElement.isDisplayed()
            && firstElement.getText().equalsIgnoreCase(subject)) {
        firstElement.click();
        largeWait();
    }

    DriverConfig.setLogString("Get temporary Password/activation link from Email.", true);
    if (boldIndex == 1) {
        WebElement divBodyElement = driver.findElement(By.xpath("//*[contains(@class,'adO')]"));
        if (pwdIndex == 1) {
            WebElement pwdElement = divBodyElement.findElements(By.tagName(TAG_STRONG)).get(0);
            tempPassword = pwdElement.getText();
            DriverConfig.setLogString("Temporary password got from email " + tempPassword, true);
        } else {
            WebElement pwdElement = divBodyElement.findElements(By.tagName(TAG_ANCHOR)).get(0);
            tempPassword = pwdElement.getText();
            DriverConfig.setLogString("Activation link got from email " + tempPassword, true);
        }
    } else if (boldIndex == 0) {
        DriverConfig.setLogString("Header Tag", true);
        WebElement divBodyElement = driver.findElement(By.className("gs"));
        List<WebElement> headerElement = divBodyElement.findElements(By.tagName("strong"));
        for (WebElement webelement : headerElement) {
            if (webelement.isDisplayed()) {
                tempPassword = webelement.getText();
                DriverConfig.setLogString("Temporary password got from email " + tempPassword, true);
            }
        }
    }
    mediumWait();

    deleteFirstMail(driver);

    DriverConfig.setLogString("Click user for Signout option", true);
    boolean value = isDisplayedById(DriverConfig.getDriver(), "gbgs4dn", MEDIUM_TIMEOUT);
    DriverConfig.setLogString("User name displayed for sign out : " + value, true);
    if (value) {
        driver.findElement(By.id("gbgs4dn")).click();
    } else {
        WebElement signOutElement = DriverConfig.getDriver().findElement(By.partialLinkText(emailUserName));
        signOutElement.click();
    }
    smallWait();

    DriverConfig.setLogString("Click Signout", true);
    driver.findElement(By.id("gb_71")).click();

    mediumWait();
    mediumWait();

    return tempPassword;
}

From source file:com.ecofactor.qa.automation.util.mail.GmailForNewUser.java

License:Open Source License

/**
 * Gets the changed password./*from  w w w  . jav a  2s  .co  m*/
 * @param url the url
 * @param emailUserName the email user name
 * @param emailPassword the email password
 * @param subject the subject
 * @param boldIndex the bold index
 * @param pwdIndex the pwd index
 * @return the changed password
 */
public String getChangedPassword(String url, String emailUserName, String emailPassword, String subject,
        int boldIndex, int pwdIndex) {

    if (gmailDriver == null) {
        gmailDriver = new ChromeDriver();
    }

    String tempPassword = null;

    largeWait();
    DriverConfig.setLogString("Load Email portal URL at change password", true);
    DriverConfig.setLogString("URL : " + url + "" + emailUserName, true);
    gmailDriver.navigate().to(url + "" + emailUserName);
    largeWait();

    boolean session = isDisplayedById(gmailDriver, "Passwd", MEDIUM_TIMEOUT);
    if (session) {
        DriverConfig.setLogString(
                "Enter username and password for Email(" + emailUserName + "/" + emailPassword + ")", true);
        if (isDisplayedById(gmailDriver, "reauthEmail", SHORT_TIMEOUT)
                && gmailDriver.findElement(By.id("reauthEmail")).getText().equalsIgnoreCase(emailUserName)) {
            clearAndInput(gmailDriver, By.id("Passwd"), emailPassword);
        } else {
            clearAndInput(gmailDriver, By.id("Email"), emailUserName);
            clearAndInput(gmailDriver, By.id("Passwd"), emailPassword);
        }

        mediumWait();
        WebElement signInButtonElement = gmailDriver.findElement(By.id("signIn"));
        DriverConfig.setLogString("click Sign In button", true);
        signInButtonElement.click();
        largeWait();
        boolean button = isDisplayedById(gmailDriver, "no-button", MEDIUM_TIMEOUT);
        if (button) {
            WebElement buttonElement = gmailDriver.findElement(By.id("no-button"));
            buttonElement.click();
            mediumWait();
        }
    }

    isDisplayedByCSS(gmailDriver, ".aio.UKr6le", MEDIUM_TIMEOUT);
    DriverConfig.setLogString("Click Inbox.", true);
    WebElement inboxElement = gmailDriver.findElement(By.partialLinkText("Inbox"));
    inboxElement.click();
    largeWait();

    DriverConfig.setLogString("Click Subject of Email.", true);
    DriverConfig.setLogString("Subject of Email : " + subject, true);
    WebElement webElement = gmailDriver.findElement(By.cssSelector(".ae4.UI.UJ"));
    List<WebElement> tagElement = webElement.findElements(By.tagName(TAG_BOLD));
    WebElement firstElement = tagElement.get(0);
    if (firstElement != null && firstElement.isDisplayed()
            && firstElement.getText().equalsIgnoreCase(subject)) {
        firstElement.click();
        largeWait();
    }

    DriverConfig.setLogString("Get temporary Password/activation link from Email.", true);
    if (boldIndex == 1) {
        WebElement divBodyElement = gmailDriver.findElement(By.xpath("//*[contains(@class,'adO')]"));
        if (pwdIndex == 1) {
            WebElement pwdElement = divBodyElement.findElements(By.tagName(TAG_STRONG)).get(0);
            tempPassword = pwdElement.getText();
            DriverConfig.setLogString("Temporary password got from email " + tempPassword, true);
        } else {
            WebElement pwdElement = divBodyElement.findElements(By.tagName(TAG_ANCHOR)).get(0);
            tempPassword = pwdElement.getText();
            DriverConfig.setLogString("Activation link got from email " + tempPassword, true);
        }
    } else if (boldIndex == 0) {
        DriverConfig.setLogString("Header Tag", true);
        WebElement divBodyElement = gmailDriver.findElement(By.className("gs"));
        List<WebElement> headerElement = divBodyElement.findElements(By.tagName("strong"));
        for (WebElement webelement : headerElement) {
            if (webelement.isDisplayed()) {
                tempPassword = webelement.getText();
                DriverConfig.setLogString("Temporary password got from email " + tempPassword, true);
            }
        }
    }
    mediumWait();

    deleteFirstMail(gmailDriver);

    DriverConfig.setLogString("Click user for Signout option", true);
    boolean value = isDisplayedById(gmailDriver, "gbgs4dn", MEDIUM_TIMEOUT);
    DriverConfig.setLogString("User name displayed for sign out : " + value, true);
    if (value) {
        gmailDriver.findElement(By.id("gbgs4dn")).click();
    } else {
        WebElement signOutElement = gmailDriver.findElement(By.partialLinkText(emailUserName));
        signOutElement.click();
    }
    smallWait();

    DriverConfig.setLogString("Click Signout", true);
    gmailDriver.findElement(By.id("gb_71")).click();

    mediumWait();
    mediumWait();
    gmailDriver.close();
    gmailDriver.quit();
    gmailDriver = null;
    return tempPassword;
}

From source file:com.ecofactor.qa.automation.util.PageUtil.java

License:Open Source License

/**
 * Utility to check weather the particular field is enabled by class name or not.
 * @param driver the driver/*from  w ww. j  av  a2 s. com*/
 * @param className the class name
 * @param timeOut the time out
 * @return boolean
 */
public static boolean isEnabledByClassName(final WebDriver driver, final String className, final int timeOut) {

    boolean isLoaded = false;
    isLoaded = (new WebDriverWait(driver, timeOut)).until(new ExpectedCondition<Boolean>() {
        public Boolean apply(WebDriver d) {

            return d.findElement(By.className(className)).isEnabled();
        }
    });
    return isLoaded;
}

From source file:com.ecofactor.qa.automation.util.PageUtil.java

License:Open Source License

/**
 * Is particular element displayed by class Name. . .
 * @param driver the driver/*ww w  . j a  v a2 s  . com*/
 * @param fieldname the fieldname
 * @param timeOut the time out
 * @return boolean
 */
public static boolean isDisplayedByClassName(final WebDriver driver, final String fieldname,
        final int timeOut) {

    boolean isLoaded = false;
    try {
        isLoaded = (new WebDriverWait(driver, timeOut)).until(new ExpectedCondition<Boolean>() {
            public Boolean apply(WebDriver d) {

                return d.findElement(By.className(fieldname)).isDisplayed();
            }
        });
    } catch (TimeoutException te) {
        isLoaded = false;
    }
    return isLoaded;
}

From source file:com.ecofactor.qa.automation.util.PageUtil.java

License:Open Source License

/**
 * Is elements displayed by class Name. . .
 * @param driver the driver// w  w w . j a  v  a 2 s  .  c  om
 * @param fieldname the fieldname
 * @param timeOut the time out
 * @return boolean
 */
public static boolean isMultipleClassNameDisplayed(final WebDriver driver, final String fieldname,
        final int timeOut) {

    boolean isLoaded = false;
    try {
        isLoaded = (new WebDriverWait(driver, timeOut)).until(new ExpectedCondition<Boolean>() {
            public Boolean apply(WebDriver d) {

                List<WebElement> scheduleChartElmtList = driver.findElements(By.className(fieldname));
                if (scheduleChartElmtList.size() > 0) {

                    return true;
                }
                return false;
            }
        });
    } catch (TimeoutException te) {
        isLoaded = false;
    }

    return isLoaded;
}

From source file:com.ecofactor.qa.automation.util.PageUtil.java

License:Open Source License

/**
 * Checks if is form displayed by class name.
 * @param driver the driver/*w w  w .  java  2  s.  c  o  m*/
 * @param element the element
 * @param fieldname the fieldname
 * @param timeOut the time out
 * @return true, if is form displayed by class name
 */
public static boolean isFormDisplayedByClassName(final WebDriver driver, final WebElement element,
        final String fieldname, final int timeOut) {

    boolean isLoaded = false;
    isLoaded = (new WebDriverWait(driver, timeOut)).until(new ExpectedCondition<Boolean>() {
        public Boolean apply(WebDriver d) {

            if (element.findElement(By.className(fieldname)).isDisplayed()) {
                return true;
            }
            return false;

        }
    });

    return isLoaded;
}