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 * tests whether the watermarks is work as expected even when they contain an 022 * apostrophe 023 * 024 * @author Kuali Rice Team (rice.collab@kuali.org) 025 */ 026 027public class WatermarkValidationAft extends LabsKitchenSinkBase { 028 029 public static final String BOOKMARK_URL = "/kr-krad/uicomponents?viewId=UifCompView&methodToCall=start&pageId=UifCompView-Page1"; 030 031 @Override 032 public String getBookmarkUrl() { 033 return BOOKMARK_URL; 034 } 035 036 037 /** 038 * if watermarking is ok, the cancel link will bring up a confirmation if something was typed into a textbox i.e 039 * the scripts will be working ok 040 */ 041 public void testWatermarking() throws Exception { 042 043 String watermarkValue = waitAndGetAttributeByName("field106", "placeholder"); 044 assertEquals("It's watermarked ", watermarkValue); 045 watermarkValue = waitAndGetAttributeByName("field110", "placeholder"); 046 assertEquals("Watermark... ",watermarkValue); 047 } 048 049 @Override 050 protected void navigate() throws Exception { 051 navigateToKitchenSink("Input Fields"); 052 } 053 054 @Test 055 public void testWatermarkingNav() throws Exception { 056 testWatermarking(); 057 passed(); 058 } 059}