use of org.olat.selenium.page.core.FolderPage in project openolat by klemens.
the class ParticipantFolderPage method openDropBox.
public FolderPage openDropBox() {
By returnBoxBy = By.xpath("//div[@class='o_briefcase_folder']//table/tbody/tr[2]/td/a[i[contains(@class,'o_filetype_folder')]]");
OOGraphene.waitElement(returnBoxBy, browser);
browser.findElement(returnBoxBy).click();
OOGraphene.waitBusy(browser);
return new FolderPage(browser);
}
Aggregations