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 org.kuali.rice.krad.labs.kitchensink; 017 018import org.junit.Test; 019 020/** 021 * @author Kuali Rice Team (rice.collab@kuali.org) 022 */ 023 024public class LabsOtherExamplesAft extends LabsKitchenSinkBase { 025 026 public static final String BOOKMARK_URL = "/kr-krad/uicomponents?viewId=UifCompView"; 027 028 @Override 029 protected String getBookmarkUrl() { 030 return BOOKMARK_URL; 031 } 032 033 @Override 034 protected void navigate() throws Exception { 035 navigateToKitchenSink("Other Examples"); 036 } 037 038 @Test 039 public void testOtherExamplesBookmark() throws Exception { 040 waitAndClickByLinkText("Other Examples"); 041 testOtherExamples(); 042 passed(); 043 } 044 045 @Test 046 public void testOtherExamplesNav() throws Exception { 047 testOtherExamples(); 048 passed(); 049 } 050 051 protected void testOtherExamples() throws InterruptedException { 052 //Fields created by Fetching Remotable Fields 053 waitForElementPresentByXpath("//input[@name='remoteFieldValuesMap[remoteField1]' and @value='Apple']"); 054 assertElementPresentByXpath("//select[@name='remoteFieldValuesMap[remoteField4]']"); 055 056 //Collection Group Remote Fields 057 assertElementPresentByXpath("//table[@class='table table-condensed table-bordered uif-tableCollectionLayout uif-hasAddLine']/tbody/tr/td[3]/div/input[@value='Apple']"); 058 assertElementPresentByXpath("//button[@id='remotableFieldsCollection_add']"); 059 060 //Various configuration and feature examples 061 assertElementPresentByXpath("//input[@name='field91' and @value='Read only value']"); 062 assertElementPresentByXpath("//input[@name='uiTestObject.field3' and @value='Foo-Bear']"); 063 064 //Tooltip examples 065 fireEvent("field1","focus"); 066 waitForTextPresent("This tooltip is triggered by focus or and mouse over."); 067 fireMouseOverEventByName("field2"); 068 assertElementPresentByXpath("//td[@class='jquerybubblepopup-innerHtml']"); 069 fireMouseOverEventByName("field119"); 070 assertElementPresentByXpath("//td[@class='jquerybubblepopup-innerHtml']"); 071 fireMouseOverEventByName("field120"); 072 assertElementPresentByXpath("//td[@class='jquerybubblepopup-innerHtml']"); 073 074 //Collection with tooltips 075 fireMouseOverEventByXpath("//div[@id='TableCollection1-Hover1_line1']"); 076 assertElementPresentByXpath("//td[@class='jquerybubblepopup-innerHtml']"); 077 } 078}