public void setGoalTitle_UI(WebDriver driver, String str) { if (!str.equals("")) { By by = By.id("title"); // Navigator.waitForAjaxElementLoad(driver, by); // Navigator.explicitWait(); Navigator.waitForAjax(driver, by); WebDriverUtils.fillin_textbox(driver, by, str); } }
public void setProgramDesc_UI(WebDriver driver, String str) { if (!str.equalsIgnoreCase("")) { By by = By.id("PROGRAM_DESC"); WebDriverUtils.fillin_textbox(driver, by, str); } }
public void setMilestone_UI(WebDriver driver, String str) { if (!str.equals("")) { By by = By.id("measurement"); WebDriverUtils.fillin_textbox(driver, by, str); } }
public void setDesc_UI(WebDriver driver, String str) { if (!str.equals("")) { By by = By.id("description"); WebDriverUtils.fillin_textbox(driver, by, str); } }
public void setWeight_UI(WebDriver driver, String str) { if (!str.equals("")) { By by = By.id("weight"); WebDriverUtils.fillin_textbox(driver, by, str); } }