001/** 002 * Copyright 2005-2015 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 */ 016package edu.sampleu.admin; 017 018import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils; 019import org.kuali.rice.testtools.selenium.WebDriverUtils; 020 021/** 022 * @author Kuali Rice Team (rice.collab@kuali.org) 023 */ 024public class ConfigParameterTypeAft extends AdminTmplMthdAftNavCopyBase { 025 026 /** 027 * ITUtil.PORTAL+"?channelTitle=Parameter%20Type&channelUrl="+WebDriverUtils.getBaseUrlString()+ 028 * "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.parameter.ParameterTypeBo&docFormKey=88888888&returnLocation=" 029 * +ITUtil.PORTAL_URL+ITUtil.HIDE_RETURN_LINK; 030 */ 031 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Parameter%20Type&channelUrl="+ WebDriverUtils 032 .getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.parameter.ParameterTypeBo&docFormKey=88888888&returnLocation=" 033 + AutomatedFunctionalTestUtils.PORTAL_URL+ AutomatedFunctionalTestUtils.HIDE_RETURN_LINK; 034 035 @Override 036 protected String getBookmarkUrl() { 037 return BOOKMARK_URL; 038 } 039 040 /** 041 * {@inheritDoc} 042 * Parameter Type 043 * @return 044 */ 045 @Override 046 protected String getLinkLocator() { 047 return "Parameter Type"; 048 } 049 050 @Override 051 protected void createNewEnterDetails() throws InterruptedException { 052 waitAndTypeByName("document.documentHeader.documentDescription", getDescriptionUnique()); 053 jiraAwareTypeByName("document.newMaintainableObject.code", uniqueString.substring(uniqueString.length() - 6, uniqueString.length())); 054 jiraAwareTypeByName("document.newMaintainableObject.name", "name" + uniqueString); 055 } 056 057 @Override 058 protected void createNewLookupDetails() throws InterruptedException { 059 createNewEnterDetails(); // no required lookups 060 } 061}