Java tutorial
/** * Copyright 2005-2014 The Kuali Foundation * * Licensed under the Educational Community License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.opensource.org/licenses/ecl2.php * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package edu.sampleu.admin; import org.apache.commons.lang.RandomStringUtils; import org.kuali.rice.testtools.common.JiraAwareFailable; import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils; import org.kuali.rice.testtools.selenium.WebDriverUtils; /** * @author Kuali Rice Team (rice.collab@kuali.org) */ public abstract class ConfigParameterTypeAftBase extends AdminTmplMthdAftNavBase { /** * ITUtil.PORTAL+"?channelTitle=Parameter%20Type&channelUrl="+WebDriverUtils.getBaseUrlString()+ * "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.parameter.ParameterTypeBo&docFormKey=88888888&returnLocation=" * +ITUtil.PORTAL_URL+ITUtil.HIDE_RETURN_LINK; */ public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Parameter%20Type&channelUrl=" + WebDriverUtils.getBaseUrlString() + "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.parameter.ParameterTypeBo&docFormKey=88888888&returnLocation=" + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK; @Override protected String getBookmarkUrl() { return BOOKMARK_URL; } /** * {@inheritDoc} * Parameter Type * @return */ @Override protected String getLinkLocator() { return "Parameter Type"; } @Override protected void createNewEnterDetails() throws InterruptedException { waitAndTypeByName("document.documentHeader.documentDescription", getDescriptionUnique()); jiraAwareTypeByName("document.newMaintainableObject.code", RandomStringUtils.randomAlphabetic(6)); jiraAwareTypeByName("document.newMaintainableObject.name", "name" + uniqueString); } public void testConfigParameterTypeBookmark(JiraAwareFailable failable) throws Exception { testSearchEditCancel(); driver.navigate().to(WebDriverUtils.getBaseUrlString() + BOOKMARK_URL); testCreateNewCancel(); passed(); } public void testConfigParameterTypeNav(JiraAwareFailable failable) throws Exception { testEditCancel(); navigate(); testCreateNewCancel(); passed(); } }