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 */ 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 ConfigParameterAft extends AdminTmplMthdAftNavCopyBase { 025 026 /** 027 * ITUtil.PORTAL+"?channelTitle=Parameter&channelUrl="+WebDriverUtils.getBaseUrlString()+ 028 * "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.parameter.ParameterBo&docFormKey=88888888&returnLocation=" 029 * +ITUtil.PORTAL_URL+ ITUtil.HIDE_RETURN_LINK; 030 */ 031 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Parameter&channelUrl="+ WebDriverUtils 032 .getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.parameter.ParameterBo&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 043 * @return 044 */ 045 @Override 046 protected String getLinkLocator() { 047 return "Parameter"; 048 } 049 050 @Override 051 protected void createNewEnterDetails() throws InterruptedException { 052 inputDetails(); 053 054 selectOptionByName("document.newMaintainableObject.namespaceCode", namespaceCode); 055 } 056 057 private void inputDetails() throws InterruptedException { 058 waitAndTypeByName("document.documentHeader.documentDescription", getDescriptionUnique()); 059 jiraAwareTypeByName("document.newMaintainableObject.componentCode", "ActionList"); 060 jiraAwareTypeByName("document.newMaintainableObject.name", "name" + uniqueString); 061 jiraAwareTypeByName("document.newMaintainableObject.description", "desc" + uniqueString); 062 selectOptionByName("document.newMaintainableObject.parameterTypeCode", "CONFG"); 063 waitAndClickByName("document.newMaintainableObject.evaluationOperatorCode"); 064 } 065 066 @Override 067 protected void createNewLookupDetails() throws InterruptedException { 068 inputDetails(); 069 070 assertEquals("", getTextByName(CANCEL_NAME)); 071 072 String componentLookUp = "//input[@name='methodToCall.performLookup.(!!org.kuali.rice.coreservice.impl.component.ComponentBo!!).(((code:document.newMaintainableObject.componentCode,namespaceCode:document.newMaintainableObject.namespaceCode,))).((`document.newMaintainableObject.componentCode:code,document.newMaintainableObject.namespaceCode:namespaceCode,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" 073 + getBaseUrlString() + "/kr/lookup.do;::::).anchor4']"; 074 waitAndClickByXpath(componentLookUp); 075 waitAndClickSearch(); 076 waitAndClickReturnValue(); 077 } 078}