001/** 002 * Copyright 2005-2016 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.krad.reference; 017 018import org.junit.Test; 019import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils; 020import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase; 021import 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 */ 028public class CitizenshipStatusAft extends WebDriverLegacyITBase { 029 030 /** 031 * AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Citizenship%20Status&channelUrl=" 032 * + WebDriverUtils.getBaseUrlString() + AutomatedFunctionalTestUtils.KRAD_LOOKUP_METHOD + 033 * "org.kuali.rice.kim.impl.identity.citizenship.EntityCitizenshipStatusBo&returnLocation=" 034 * + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK; 035 */ 036 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Citizenship%20Status&channelUrl=" 037 + WebDriverUtils.getBaseUrlString() + AutomatedFunctionalTestUtils.KRAD_LOOKUP_METHOD + 038 "org.kuali.rice.kim.impl.identity.citizenship.EntityCitizenshipStatusBo&returnLocation=" 039 + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK; 040 041 @Override 042 protected String getBookmarkUrl() { 043 return BOOKMARK_URL; 044 } 045 046 @Override 047 protected void navigate() throws InterruptedException { 048 waitAndClickKRAD(); 049 waitAndClickByLinkText("Citizenship Status"); 050 } 051 052 //Code for KRAD Test Package. 053 protected void testCitizenshipStatus() throws Exception { 054 selectFrameIframePortlet(); 055 waitAndClickSearchByText(); 056 Thread.sleep(3000); 057 //Code cannot be executed as there is not data to test on Citizenship Status. 058 } 059 060 @Test 061 public void testCitizenshipStatusBookmark() throws Exception { 062 testCitizenshipStatus(); 063 passed(); 064 } 065 066 @Test 067 public void testCitizenshipStatusNav() throws Exception { 068 testCitizenshipStatus(); 069 passed(); 070 } 071}