Select Git revision
ResourceTab.java
Mihai BOZ authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ResourceTab.java 756 B
package pages.administration.editGroupsPage;
import ddsl.dcomponents.commonComponents.subcategoryTab.SubcategoryTabComponent;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.pagefactory.AjaxElementLocatorFactory;
import pages.administration.editDomainsPage.CreateGroupDetailsDialog;
public class ResourceTab extends SubcategoryTabComponent {
public ResourceTab(WebDriver driver) {
super(driver);
PageFactory.initElements(new AjaxElementLocatorFactory(driver, data.getWaitTimeShort()), this);
}
public CreateGroupDetailsDialog clickOnCreateNewResource() throws Exception {
create();
return new CreateGroupDetailsDialog(driver);
}
}