001 /** 002 * Copyright 2005-2014 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package edu.sampleu.kim.api.identity; 017 018 import edu.sampleu.admin.AdminTmplMthdAftNavBase; 019 import org.kuali.rice.testtools.common.JiraAwareFailable; 020 import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils; 021 import org.kuali.rice.testtools.selenium.WebDriverUtils; 022 import org.openqa.selenium.By; 023 024 /** 025 * @author Kuali Rice Team (rice.collab@kuali.org) 026 */ 027 public abstract class IdentityResponsibilityAftBase extends AdminTmplMthdAftNavBase { 028 029 /** 030 * ITUtil.PORTAL + "?channelTitle=Responsibility&channelUrl=" 031 * + WebDriverUtils.getBaseUrlString() + ITUtil.KNS_LOOKUP_METHOD + "org.kuali.rice.kim.impl.responsibility.UberResponsibilityBo&docFormKey=88888888&returnLocation=" + 032 * ITUtil.PORTAL_URL + ITUtil.HIDE_RETURN_LINK; 033 */ 034 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Responsibility&channelUrl=" 035 + WebDriverUtils.getBaseUrlString() + AutomatedFunctionalTestUtils.KNS_LOOKUP_METHOD + 036 "org.kuali.rice.kim.impl.responsibility.UberResponsibilityBo&docFormKey=88888888&returnLocation=" + 037 AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK ; 038 039 @Override 040 protected String getBookmarkUrl() { 041 return BOOKMARK_URL; 042 } 043 044 /** 045 * {@inheritDoc} 046 * Responsibility 047 * @return 048 */ 049 @Override 050 protected String getLinkLocator() { 051 return "Responsibility"; 052 } 053 054 protected void createNewEnterDetails() throws InterruptedException { 055 waitAndTypeByName("document.documentHeader.documentDescription", getDescriptionUnique()); 056 selectOptionByName("document.newMaintainableObject.namespaceCode", namespaceCode); 057 jiraAwareTypeByName("document.newMaintainableObject.name", "name" + uniqueString); 058 jiraAwareTypeByName("document.newMaintainableObject.documentTypeName", "DocumentTypeDocument"); 059 jiraAwareTypeByName("document.newMaintainableObject.routeNodeName", "routeNodeName" + uniqueString); 060 waitAndClick(By.name("document.newMaintainableObject.actionDetailsAtRoleMemberLevel")); 061 waitAndClick(By.name("document.newMaintainableObject.required")); 062 } 063 064 public void testIdentityResponsibilityBookmark(JiraAwareFailable failable) throws Exception { 065 testCreateNewCancel(); 066 passed(); 067 } 068 069 public void testIdentityResponsibilityNav(JiraAwareFailable failable) throws Exception { 070 testCreateNewCancelNav(); 071 passed(); 072 } 073 }