8586878889909192
select.selectByValue(NOTIFIER_HOURLY); } public void setNotifierDaily() { Select select = new Select(this.notifier); select.selectByValue(NOTIFIER_DAILY); }
9192939495969798
select.selectByValue(NOTIFIER_DAILY); } public void setNotifierWeekly() { Select select = new Select(this.notifier); select.selectByValue(NOTIFIER_WEEKLY); }
4950515253545556
@FindBy(id = "XWiki.WatchListClass_0_automaticwatch") private WebElement automaticwatch; public void setAutomaticWatchDefault() { Select select = new Select(this.automaticwatch); select.selectByValue(AUTOMATICWATCH_DEFAULT); }
5556575859606162
select.selectByValue(AUTOMATICWATCH_DEFAULT); } public void setAutomaticWatchNone() { Select select = new Select(this.automaticwatch); select.selectByValue(AUTOMATICWATCH_NONE); }
6162636465666768
select.selectByValue(AUTOMATICWATCH_NONE); } public void setAutomaticWatchAll() { Select select = new Select(this.automaticwatch); select.selectByValue(AUTOMATICWATCH_ALL); }
6768697071727374
select.selectByValue(AUTOMATICWATCH_ALL); } public void setAutomaticWatchMajor() { Select select = new Select(this.automaticwatch); select.selectByValue(AUTOMATICWATCH_MAJOR); }
7374757677787980
select.selectByValue(AUTOMATICWATCH_MAJOR); } public void setAutomaticWatchNew() { Select select = new Select(this.automaticwatch); select.selectByValue(AUTOMATICWATCH_NEW); }
7980818283848586
select.selectByValue(AUTOMATICWATCH_NEW); } public void setNotifierHourly() { Select select = new Select(this.notifier); select.selectByValue(NOTIFIER_HOURLY); }
150151152153154155156157
/** * @since 2.6RC1 */ public void setSyntaxId(String syntaxId) { Select select = new Select(this.syntaxIdSelect); select.selectByValue(syntaxId); }
4243444546474849
@FindBy(xpath = "//select[@id='XWiki.XWikiUsers_0_usertype']") private WebElement userType; public void setSimpleUserType() { Select select = new Select(this.userType); select.selectByValue(SIMPLE_USER); }