1 package edu.samplu.common;
2
3 import static org.junit.Assert.assertEquals;
4
5
6
7
8
9 public abstract class MenuITBase extends UpgradedSeleniumITBase {
10 @Override
11 public String getTestUrl() {
12 return PORTAL;
13 }
14
15
16
17
18
19 protected abstract String getMenuLinkLocator();
20
21
22
23
24
25 protected abstract String getLinkLocator();
26
27
28
29
30
31
32 protected abstract String getCreateNewLinkLocator();
33
34
35
36
37 protected void gotoMenuLinkLocator() {
38 assertEquals("Kuali Portal Index", selenium.getTitle());
39 selenium.click(getMenuLinkLocator());
40 selenium.waitForPageToLoad("30000");
41 assertEquals("Kuali Portal Index", selenium.getTitle());
42 selenium.click(getLinkLocator());
43 selenium.waitForPageToLoad("30000");
44 assertEquals("Kuali Portal Index", selenium.getTitle());
45 selenium.selectFrame("iframeportlet");
46 }
47
48
49
50
51 protected void gotoCreateNew() {
52 gotoMenuLinkLocator();
53 selenium.click(getCreateNewLinkLocator());
54
55 selenium.waitForPageToLoad("30000");
56 }
57 }