1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.admin.test;
17
18 import org.kuali.rice.testtools.selenium.Failable;
19 import org.kuali.rice.testtools.selenium.ITUtil;
20
21
22
23
24 public abstract class ClearAllCashesAbstractSmokeTestBase extends AdminTmplMthdSTNavBase{
25
26
27
28
29
30 public static final String BOOKMARK_URL = ITUtil.PORTAL+"?channelTitle=Cache%20Admin&channelUrl="+ITUtil.getBaseUrlString()+
31 "/kr-krad/core/admin/cache?viewId=CacheAdmin-view1&methodToCall=start";
32
33
34
35
36
37
38 @Override
39 protected String getLinkLocator() {
40 return "Cache Admin";
41 }
42
43 public void testClearAllCashesBookmark(Failable failable) throws Exception {
44 testClearAllCashes();
45 passed();
46 }
47
48 public void testClearAllCashesNav(Failable failable) throws Exception {
49 testClearAllCashes();
50 passed();
51 }
52
53 public void testClearAllCashes() throws Exception
54 {
55 selectFrameIframePortlet();
56 waitAndClickByXpath("//li[@id='u27_node_0_parent_root']/a/ins");
57 waitAndClickByXpath("//li[@id='u27_node_1_parent_root']/a/ins");
58 waitAndClickByXpath("//li[@id='u27_node_2_parent_root']/a/ins");
59 waitAndClickByXpath("//li[@id='u27_node_3_parent_root']/a/ins");
60 waitAndClickByXpath("//li[@id='u27_node_4_parent_root']/a/ins");
61 waitAndClickByXpath("//button[@id='u50']");
62 Thread.sleep(10000);
63 assertTextPresent("All caches were flushed for the CacheManager: coreServiceDistributedCacheManager.");
64 assertTextPresent(" Cache Management ");
65 }
66 }