Example usage for org.openqa.selenium By name

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

Introduction

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

Prototype

public static By name(String name) 

Source Link

Usage

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectMonthlyIncome(String monthlyIncomeString) throws Throwable {
    Thread.sleep(1000);//  ww w.ja  va2 s.c o m
    WebElement monthlyIncome = driver.findElement(By.name("monthlyIncome"));
    Select mySelect = new Select(monthlyIncome);
    mySelect.selectByVisibleText(monthlyIncomeString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectReservedFundsYear(String reservedFundsYearString) throws Throwable {
    Thread.sleep(1000);/*  w ww.j av a 2  s .  c  om*/
    WebElement reservedFundsYear = driver.findElement(By.name("reservedFundsYear"));
    Select mySelect = new Select(reservedFundsYear);
    mySelect.selectByVisibleText(reservedFundsYearString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectReservedFunds(String reservedFundsString) throws Throwable {
    Thread.sleep(1000);//from  w  w w  .  ja va2 s .  c  o m
    WebElement reservedFunds = driver.findElement(By.name("reservedFunds"));
    Select mySelect = new Select(reservedFunds);
    mySelect.selectByVisibleText(reservedFundsString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectSocialYear(String socialYearString) throws Throwable {
    Thread.sleep(1000);//w w  w  .j a  v  a 2  s  .c  om
    WebElement socialYear = driver.findElement(By.name("socialYear"));
    Select mySelect = new Select(socialYear);
    mySelect.selectByVisibleText(socialYearString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectCompanyAddressPid(String companyAddressPidString) throws Throwable {
    Thread.sleep(1000);/*from w w w  . j a va  2  s. c o  m*/
    WebElement companyAddressPid = driver.findElement(By.name("companyAddressPid"));
    Select mySelect = new Select(companyAddressPid);
    mySelect.selectByVisibleText(companyAddressPidString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectCompanyAddressCid(String companyAddressCidString) throws Throwable {
    Thread.sleep(3000);//from  w  ww.j  av  a 2  s  .com
    WebElement companyAddressCid = driver.findElement(By.name("companyAddressCid"));
    Select mySelect = new Select(companyAddressCid);
    mySelect.selectByVisibleText(companyAddressCidString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectCompanyAddressRid(String companyAddressRidString) throws Throwable {
    Thread.sleep(3000);//from w ww.  j av  a  2s  . c  o  m
    WebElement companyAddressRid = driver.findElement(By.name("companyAddressRid"));
    Select mySelect = new Select(companyAddressRid);
    mySelect.selectByVisibleText(companyAddressRidString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectHomeAddressPid(String homeAddressPidString) throws Throwable {
    Thread.sleep(1000);/*w w w . ja  v a 2  s .com*/
    WebElement homeAddressPid = driver.findElement(By.name("homeAddressPid"));
    Select mySelect = new Select(homeAddressPid);
    mySelect.selectByVisibleText(homeAddressPidString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectHomeAddressCid(String homeAddressCidString) throws Throwable {
    Thread.sleep(3000);/*from  w  w  w . jav a  2  s.co  m*/
    WebElement homeAddressCid = driver.findElement(By.name("homeAddressCid"));
    Select mySelect = new Select(homeAddressCid);
    mySelect.selectByVisibleText(homeAddressCidString);
}

From source file:cls.ui.model.selenium.loanreview.BusinessEnteringPage.java

public void selectHomeAddressRid(String homeAddressRidString) throws Throwable {
    Thread.sleep(3000);//from w  w w  . j  a v  a2s.co  m
    WebElement homeAddressRid = driver.findElement(By.name("homeAddressRid"));
    Select mySelect = new Select(homeAddressRid);
    mySelect.selectByVisibleText(homeAddressRidString);
}