Example usage for org.openqa.selenium By id

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

Introduction

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

Prototype

public static By id(String id) 

Source Link

Usage

From source file:LoginScreenGrapheneTest.java

@Test
@RunAsClient/*from  w  w  w . j  a  v  a  2  s  .c o m*/
public void ShouldBePosibleToSearchTestowkaAtGoogle() throws InterruptedException {
    browser.get("http://google.pl");
    WebElement searchField = browser.findElement(By.name("q"));
    searchField.sendKeys("testowka.pl");
    WebElement searchButton = browser.findElement(By.id("sblsbb"));
    searchButton.click();
    for (int second = 0;; second++) {
        if (second >= 60)
            fail("timeout");
        try {
            if (browser.findElement(By.linkText("Testowka.pl")).isDisplayed()) {
                break;
            }
        } catch (Exception e) {
        }
        Thread.sleep(1000);
    }
    WebElement linkToTestowka = browser.findElement(By.linkText("Testowka.pl"));
    linkToTestowka.click();
}

From source file:UnitTest1.java

@Test
public void comparisonFBloginButton() throws InterruptedException {
    String exePath = "C:\\Unit Testing\\Drivers\\chromedriver.exe";
    System.setProperty("webdriver.chrome.driver", exePath);
    WebDriver driver = new ChromeDriver();

    driver.get("https://www.facebook.com");

    String actualTitle = "u_0_o";

    WebElement test = driver.findElement(By.id("u_0_o"));
    assertEquals(actualTitle, test.getAttribute("id"));
    Thread.sleep(5);/*from w w w  . j a  v a  2s  .  co  m*/
    driver.quit();

}

From source file:DataLoadedTest.java

@Test
public void isDataLoadedTest() {
    WebElement table = driver.findElement(By.id("tbodycars"));
    List<WebElement> tableRows = table.findElements(By.tagName("tr"));
    // There should be five rows of data.
    assertThat(tableRows.size(), is(5));
}

From source file:StateContentTest.java

public void selectState(String state) throws InterruptedException {
    try {//from   w w w . j a  v a 2 s .  c om
        new Select(driver.findElement(By.id("statesel"))).selectByVisibleText(state);
        driver.findElement(By.id("stateSelectionContinue")).click();
    } catch (WebDriverException w) {
        driver.findElement(By.cssSelector("div.select-state > a")).click();
        Thread.sleep(1000);
        new Select(driver.findElement(By.id("statesel"))).selectByVisibleText(state);
        driver.findElement(By.id("stateSelectionContinue")).click();
    }
}

From source file:StateContentTest.java

public void testSignUpPage(String state) throws InterruptedException {
    driver.findElement(By.cssSelector("a.btn.btn-primary")).click();

    assertEquals(copyMatrix.get(state)[4].trim(),
            driver.findElement(By.id("courseReasonDesc")).getText().trim());

    driver.findElement(By.id("confirmState")).click();
    Thread.sleep(300);//from w w w.  j a v  a 2s  .  c  o  m

    switch (state) {
    case "Alaska":
    case "California":
    case "Delaware":
    case "District of Columbia":
    case "Michigan":
    case "Minnesota":
    case "Pennsylvania":
    case "West Virginia":
        assertEquals(copyMatrix.get(state)[5].trim(),
                driver.findElement(By.id("id=REFRESHER-Q")).getText().trim());
        driver.findElement(By.xpath("(//a[contains(text(),'?')])[3]")).click();
        Thread.sleep(300);
        assertEquals(copyMatrix.get(state)[6].trim(),
                driver.findElement(By.id("id=REFRESHER-TIP")).getText().trim());
        driver.findElement(By.cssSelector(
                "#refresherpop > div.modal-dialog > div.modal-content > div.modal-header > button.close.btn-close"))
                .click();

        new Select(driver.findElement(By.id("DLTYPE"))).selectByVisibleText("CLASS A");
        new Select(driver.findElement(By.id("COURSEREASON"))).selectByVisibleText("Court Referral");
    default:
        driver.findElement(By.id("continueCourseOptions")).click();
        break;
    }
    Thread.sleep(300);

    driver.findElement(By.id("CCNAME")).clear();
    driver.findElement(By.id("CCNAME")).sendKeys("test test");
    driver.findElement(By.id("cc")).clear();
    driver.findElement(By.id("cc")).sendKeys("4111111111111111");
    new Select(driver.findElement(By.id("CCMONTH"))).selectByVisibleText("04 (Apr)");
    new Select(driver.findElement(By.id("CCYEAR"))).selectByVisibleText("2018");
    driver.findElement(By.id("CCCVV")).clear();
    driver.findElement(By.id("CCCVV")).sendKeys("0000");
    driver.findElement(By.id("CCEMAIL")).clear();
    driver.findElement(By.id("CCEMAIL")).sendKeys("kyle.erickson@thomasarts.com");
    driver.findElement(By.id("CCCEMAIL")).clear();
    driver.findElement(By.id("CCCEMAIL")).sendKeys("kyle.erickson@thomasarts.com");
    driver.findElement(By.id("PASSWORD")).clear();
    driver.findElement(By.id("PASSWORD")).sendKeys("password1");
    driver.findElement(By.id("CPASSWORD")).clear();
    driver.findElement(By.id("CPASSWORD")).sendKeys("password1");
    driver.findElement(By.id("TERMS")).click();
    driver.findElement(By.id("coursePurchase")).click();

    Thread.sleep(300);
    //assertEquals("Thank you for your purchase!", driver.findElement(By.cssSelector("h1")).getText());

    //      driver.findElement(By.id("FIRSTNAME")).clear();
    //      driver.findElement(By.id("FIRSTNAME")).sendKeys("test");
    //      driver.findElement(By.id("LASTNAME")).clear();
    //      driver.findElement(By.id("LASTNAME")).sendKeys("test");
    //      driver.findElement(By.id("ADDRESS1")).clear();
    //      driver.findElement(By.id("ADDRESS1")).sendKeys("555 fake st.");
    //      driver.findElement(By.id("CITY")).clear();
    //      driver.findElement(By.id("CITY")).sendKeys("faketown");
    //      driver.findElement(By.id("ZIP")).clear();
    //      driver.findElement(By.id("ZIP")).sendKeys("84015");
    //      new Select(driver.findElement(By.id("DATEOFBIRTH_MONTH"))).selectByVisibleText("MAY");
    //      new Select(driver.findElement(By.id("DATEOFBIRTH_DAY"))).selectByVisibleText("4");
    //      new Select(driver.findElement(By.id("DATEOFBIRTH_YEAR"))).selectByVisibleText("1915");
    //      driver.findElement(By.id("radio")).click();
    //      driver.findElement(By.id("PHONE")).clear();
    //      driver.findElement(By.id("PHONE")).sendKeys("555-555-5555");
    //      driver.findElement(By.id("DL")).clear();
    //      driver.findElement(By.id("DL")).sendKeys("555555555");
    //      driver.findElement(By.name("submit")).click();
}

From source file:StateContentTest.java

public void testGiftPaymentPage(String state) throws InterruptedException {
    loadPage(false);/*from w  w  w  . ja v  a 2s. com*/
    driver.findElement(By.xpath("//a[contains(text(),'Purchase the course as a gift')]")).click();

    driver.findElement(By.cssSelector("p.sta-link > a > span")).click();
    Thread.sleep(300);
    assertEquals(copyMatrix.get(state)[21].trim(),
            driver.findElement(By.cssSelector(
                    "#stateInfo-gifter > div.modal-dialog > div.modal-content > div.modal-body > p")).getText()
                    .trim());
    driver.findElement(By.cssSelector(
            "#stateInfo-gifter > div.modal-dialog > div.modal-content > div.modal-header > button.close.btn-close"))
            .click();
    Thread.sleep(300);
    driver.findElement(By.id("confirmState")).click();

    driver.findElement(By.id("RNAME")).clear();
    driver.findElement(By.id("RNAME")).sendKeys("Test Test");
    driver.findElement(By.id("REMAIL")).clear();
    driver.findElement(By.id("REMAIL")).sendKeys("test@test.test");
    driver.findElement(By.id("CREMAIL")).clear();
    driver.findElement(By.id("CREMAIL")).sendKeys("test@test.test");
    driver.findElement(By.id("FROMANME")).clear();
    driver.findElement(By.id("FROMANME")).sendKeys("test");
    driver.findElement(By.id("continueCourseOptions")).click();

    driver.findElement(By.id("CCNAME")).clear();
    driver.findElement(By.id("CCNAME")).sendKeys("test");
    driver.findElement(By.id("cc")).clear();
    driver.findElement(By.id("cc")).sendKeys("4111111111111111");
    new Select(driver.findElement(By.id("CCMONTH"))).selectByVisibleText("04 (Apr)");
    new Select(driver.findElement(By.id("CCYEAR"))).selectByVisibleText("2018");
    driver.findElement(By.id("CCCVV")).clear();
    driver.findElement(By.id("CCCVV")).sendKeys("0000");
    driver.findElement(By.id("CCEMAIL")).clear();
    driver.findElement(By.id("CCEMAIL")).sendKeys("test@test.test");
    driver.findElement(By.id("CCCEMAIL")).clear();
    driver.findElement(By.id("CCCEMAIL")).sendKeys("test@test.test");
    driver.findElement(By.id("TERMS")).click();
    driver.findElement(By.id("coursePurchase")).click();

    Thread.sleep(3000);

    assertEquals("Thank you for your gift purchase!", driver.findElement(By.cssSelector("h1")).getText());
}

From source file:TestaCadastroProcesso.java

@Test(groups = "login")
public void testaLoginSiapcon() throws Exception {

    driver.navigate().to("http://52.1.49.37/SIAPCON_SPRINT11/");

    DefaultThrowTreatment def = new DefaultThrowTreatment();

    // verifica se os elementos existem
    def.verifyElementPresenceById(driver, "RichWidgets_wt33:wtMainContent:wtUserNameInput");
    def.verifyElementPresenceById(driver, "RichWidgets_wt33:wtMainContent:wtPasswordInput");
    def.verifyElementPresenceById(driver, "RichWidgets_wt33:wtMainContent:wtLoginButton");

    // caso exista escreve
    WebElement inputUser = driver.findElement(By.id("RichWidgets_wt33:wtMainContent:wtUserNameInput"));
    WebElement inputPasswd = driver.findElement(By.id("RichWidgets_wt33:wtMainContent:wtPasswordInput"));
    WebElement buttonLogin = driver.findElement(By.id("RichWidgets_wt33:wtMainContent:wtLoginButton"));

    // escreve as informaes=
    inputUser.sendKeys("claudiana.coelho");
    inputPasswd.sendKeys("123456");

    // clica no boto
    buttonLogin.click();//from  w w w  . java  2s  . c o m
}

From source file:TestaCadastroProcesso.java

@Test(dependsOnGroups = "login", groups = "required")
public void testaMsgNumero() throws Exception {

    driver.navigate()//from  w w w.j ava 2  s  .  c o  m
            .to("http://52.1.49.37/SIAPCON_SPRINT11/ListarProcessos.jsf?(Not.Licensed.For.Production)=");

    driver.navigate().to(
            "http://52.1.49.37/SIAPCON_SPRINT11/ProcessoDetail.jsf?processoId=0&(Not.Licensed.For.Production)=");

    // gera um tempo de espera para a pgina carregar e o elemento ser renderizado
    driver.manage().timeouts().pageLoadTimeout(60, TimeUnit.SECONDS);

    try {

        // insere um numero de processo valido
        WebElement numero = driver
                .findElement(By.id("RichWidgets_wt95:wtMainContent:wtnumeroProcessoAtualWidget"));
        numero.sendKeys("000");

        // clica no boto submit
        WebElement submit = driver.findElement(By.id("RichWidgets_wt95:wtMainContent:wt38"));
        submit.click();

        // Espera at que o elemento que contm a msg de erro esteja vsivel
        WebDriverWait wait = new WebDriverWait(driver, 30);
        wait.until(ExpectedConditions.visibilityOfElementLocated(By.className("Feedback_Message_Error")));

        // testa se a msg de obrigatoriedade est sendo exibida
        if (!driver.findElement(By.className("Feedback_Message_Error")).isDisplayed()) {
            Assert.fail("No est exibindo msg");
        }

    } catch (Exception e) {
        throw (e);
    }

    driver.navigate().to(
            "http://52.1.49.37/SIAPCON_SPRINT11/ProcessoDetail.jsf?processoId=0&(Not.Licensed.For.Production)=");

    // insere um numero de processo valido
    WebElement numero = driver.findElement(By.id("RichWidgets_wt95:wtMainContent:wtnumeroProcessoAtualWidget"));
    numero.sendKeys("00000.000000/00");

    try {

        // clica no boto submit
        WebElement submit = driver.findElement(By.id("RichWidgets_wt95:wtMainContent:wt38"));
        submit.click();

        // espera at que o elemento que contm a msg de erro esteja visvel
        WebDriverWait wait = new WebDriverWait(driver, 30);
        wait.until(ExpectedConditions.visibilityOfElementLocated(By.className("Feedback_Message_Error")));

        if (!driver.findElement(By.className("Feedback_Message_Error")).isDisplayed()) {
            Assert.fail("No est exibindo msg");
        }

    } catch (Exception e) {
        throw (e);
    }
}

From source file:TestaCadastroProcesso.java

@Test(dependsOnGroups = "required", groups = "salva")
public void testaInsercaoProcesso() {

    driver.navigate().to(/*from   ww  w  .  j  a  va  2 s  .c  o  m*/
            "http://52.1.49.37/SIAPCON_SPRINT11/ProcessoDetail.jsf?processoId=0&(Not.Licensed.For.Production)=");

    driver.navigate().to(
            "http://52.1.49.37/SIAPCON_SPRINT11/ProcessoDetail.jsf?processoId=0&(Not.Licensed.For.Production)=");

    try {

        // insere um numero de processo valido
        WebElement numero = driver
                .findElement(By.id("RichWidgets_wt95:wtMainContent:wtnumeroProcessoAtualWidget"));
        numero.sendKeys(proc);

        // insere um tipo de processo valido
        WebElement tipo = driver.findElement(By.id("RichWidgets_wt95:wtMainContent:wttipoProcessoWidget"));
        tipo.sendKeys("a");

        // clica no boto submit
        WebElement submit = driver.findElement(By.id("RichWidgets_wt95:wtMainContent:wt38"));
        submit.click();

        // espera at que o boto de encerrar cadastro esteja visvel
        WebDriverWait wait = new WebDriverWait(driver, 60);
        wait.until(ExpectedConditions.visibilityOfElementLocated(By.className("corbranca")));

        if (!driver.findElement(By.className("corbranca")).isDisplayed()) {
            Assert.fail("No exibiu o boto encerrar cadastro");
        }
    } catch (Exception e) {
        throw (e);
    }
}

From source file:TestaCadastroProcesso.java

@Test(dependsOnGroups = "salva", groups = "salvou")
public void testaSeInseriuProcesso() throws Exception {

    driver.navigate()/*from  w  w w.jav a 2  s .c  o m*/
            .to("http://52.1.49.37/SIAPCON_SPRINT11/ListarProcessos.jsf?(Not.Licensed.For.Production)=");

    try {

        // insere orgao do processo na busca
        WebElement orgao = driver
                .findElement(By.id("RichWidgets_wt88:wtMainContent:wtnumeroProcessoOrgaoWidget"));
        orgao.sendKeys(proc.substring(0, 5));

        // insere numero do processo na busca
        WebElement numero = driver
                .findElement(By.id("RichWidgets_wt88:wtMainContent:wtnumeroProcessoNumeroWidget"));
        numero.sendKeys(proc.substring(5, 11));

        // insere ano do processo na busca
        WebElement ano = driver.findElement(By.id("RichWidgets_wt88:wtMainContent:wtnumeroProcessoAnoWidget"));
        ano.sendKeys(proc.substring(11, 13));

        // acha o input do submit e clica para fazer a pesquisa
        WebElement submit3 = driver.findElement(By.xpath("//input[@type='submit']"));
        submit3.click();

        // para esperar a resposta do Ajax impede o Selenium de prosseguir
        Thread.sleep(60000);

        WebElement table = driver.findElement(By.id("RichWidgets_wt88:wtMainContent:wtProcessoTableAjaxRfrsh"));

        WebElement a = driver.findElement(By.id("RichWidgets_wt88:wtMainContent:wtProcessoTable:0:wt7"));

        String processo = proc.substring(0, 5) + "." + proc.substring(5, 11) + "/" + proc.substring(11, 13);

        if (!a.getText().toString().contains(processo)) {
            Assert.fail("No cadastrou!");
        }

    } catch (Exception e) {
        throw (e);
    }
}