1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.mainmenu.test;
17
18 import edu.samplu.common.ITUtil;
19 import edu.samplu.common.WebDriverLegacyITBase;
20
21 import org.junit.Test;
22 import org.openqa.selenium.By;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27
28
29
30
31
32 public class WorkFlowRouteRulesBlanketAppWDIT extends WebDriverLegacyITBase {
33
34 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=Routing%20Rules&channelUrl=" + ITUtil.getBaseUrlString() +
35 "/kr/lookup.do?businessObjectClassName=org.kuali.rice.kew.rule.RuleBaseValues&docFormKey=88888888&returnLocation=" +
36 ITUtil.PORTAL_URL + "&hideReturnLink=true&showMaintenanceLinks=true";
37
38
39
40
41
42
43 @Override
44 public String getTestUrl() {
45
46 return TEST_URL;
47 }
48 @Test
49 public void testWorkFlowRouteRulesBlanketApp() throws Exception {
50 super.testWorkFlowRouteRulesBlanketApp();
51 }
52
53
54 }
55