001 /** 002 * Copyright 2005-2013 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.kew; 017 018 import org.junit.Test; 019 import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils; 020 import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase; 021 import org.kuali.rice.testtools.selenium.WebDriverUtils; 022 023 /** 024 * Tests the Component section in Rice. 025 * 026 * @author Kuali Rice Team (rice.collab@kuali.org) 027 */ 028 public class RoutingReportAft extends WebDriverLegacyITBase { 029 030 /** 031 * AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Routing%20Report&channelUrl=" 032 * + WebDriverUtils.getBaseUrlString() + "/kew/RoutingReport.do?returnLocation=" + 033 * AutomatedFunctionalTestUtils.PORTAL; 034 */ 035 public static final String BOOKMARK_URL = 036 AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Routing%20Report&channelUrl=" + WebDriverUtils 037 .getBaseUrlString() + "/kew/RoutingReport.do?returnLocation=" + AutomatedFunctionalTestUtils.PORTAL; 038 039 @Override 040 protected String getBookmarkUrl() { 041 return BOOKMARK_URL; 042 } 043 044 @Override 045 protected void navigate() throws InterruptedException { 046 waitAndClickMainMenu(); 047 waitAndClickByLinkText("Routing Report"); 048 } 049 050 protected void testRoutingReport() throws Exception { 051 selectFrameIframePortlet(); 052 selectByName("ruleTemplateId", "WorkflowDocumentDelegationTemplate"); 053 // selectFrameIframePortlet(); 054 assertTextPresent(new String[] {"Enter Routing Data", "Effective Date:", "Document Type:"}); 055 assertElementPresentByXpath("//input[@name='methodToCall.calculateRoute']"); 056 selectByName("ruleTemplateId", "TravelRequest-DestinationRouting"); 057 // selectFrameIframePortlet(); 058 waitForTextPresent("Destination:"); 059 } 060 061 @Test 062 public void testRoutingReportBookmark() throws Exception { 063 testRoutingReport(); 064 passed(); 065 } 066 067 @Test 068 public void testRoutingReportNav() throws Exception { 069 testRoutingReport(); 070 passed(); 071 } 072 }