1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.labs.kitchensink;
17
18 import org.junit.Test;
19
20
21
22
23
24
25
26
27 public class WatermarkValidationAft extends LabsKitchenSinkBase {
28
29 public static final String BOOKMARK_URL = "/kr-krad/uicomponents?viewId=UifCompView&methodToCall=start&pageId=UifCompView-Page1";
30
31 @Override
32 public String getBookmarkUrl() {
33 return BOOKMARK_URL;
34 }
35
36
37
38
39
40
41 public void testWatermarking() throws Exception {
42
43 String watermarkValue = waitAndGetAttributeByName("field106", "placeholder");
44 assertEquals("It's watermarked ", watermarkValue);
45 watermarkValue = waitAndGetAttributeByName("field110", "placeholder");
46 assertEquals("Watermark... ",watermarkValue);
47 }
48
49 @Override
50 protected void navigate() throws Exception {
51 navigateToKitchenSink("Input Fields");
52 }
53
54 @Test
55 public void testWatermarkingNav() throws Exception {
56 testWatermarking();
57 passed();
58 }
59 }