1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.common;
17
18 import org.junit.Test;
19
20 import static org.junit.Assert.assertTrue;
21
22
23
24
25
26 public abstract class MainMenuLookupITBase extends MenuITBase {
27 @Override
28 protected String getCreateNewLinkLocator() {
29 return "link=Create New";
30 }
31
32 @Override
33 protected String getMenuLinkLocator() {
34 return "link=Main Menu";
35 }
36
37
38
39
40 public abstract void lookupAssertions();
41
42 @Test
43 public void testLookUp() throws Exception {
44 selenium.click(getLinkLocator());
45 selenium.waitForPageToLoad("30000");
46 selenium.selectFrame("iframeportlet");
47 selenium.click("css=button:contains(earch)");
48 Thread.sleep(3000);
49 selenium.waitForPageToLoad("30000");
50 selenium.click("link=edit");
51 selenium.waitForPageToLoad("30000");
52 assertTrue(selenium.isTextPresent("submit"));
53 assertTrue(selenium.isTextPresent("Save"));
54 assertTrue(selenium.isTextPresent("blanket approve"));
55 assertTrue(selenium.isTextPresent("Close"));
56 assertTrue(selenium.isTextPresent("Cancel"));
57 lookupAssertions();
58 selenium.click("link=Cancel");
59 selenium.waitForPageToLoad("30000");
60 }
61 }