1 package edu.samplu.mainmenu.test;
2
3 import edu.samplu.common.UpgradedSeleniumITBase;
4 import org.junit.Test;
5 import static org.junit.Assert.assertTrue;
6
7
8
9
10
11
12
13 public class DocSearchToAnotherViewIT extends UpgradedSeleniumITBase {
14 @Override
15 public String getTestUrl() {
16 return PORTAL;
17 }
18
19 @Test
20
21
22
23
24 public void testDocSearchToAnotherView() throws Exception {
25 selenium.click("css=img[alt=\"doc search\"]");
26 selenium.waitForPageToLoad("30000");
27 selenium.selectFrame("iframeportlet");
28 selenium.click("css=td.infoline > input[name=\"methodToCall.search\"]");
29 selenium.waitForPageToLoad("30000");
30 selenium.selectFrame("relative=top");
31 selenium.click("link=Main Menu");
32 selenium.waitForPageToLoad("30000");
33 selenium.setSpeed("2000");
34 selenium.click("link=People Flow");
35 selenium.waitForPageToLoad("30000");
36 selenium.selectFrame("iframeportlet");
37 selenium.click("link=Create New");
38 selenium.waitForPageToLoad("30000");
39 selenium.focus("name=document.documentHeader.documentDescription");
40 selenium.type("name=document.documentHeader.documentDescription", "sample description");
41 selenium.focus("name=document.documentHeader.explanation");
42 selenium.type("name=document.documentHeader.explanation", "sample explanation");
43 selenium.focus("link=Cancel");
44 selenium.click("link=Cancel");
45 assertTrue(selenium.getConfirmation().matches("^Form has unsaved data\\. Do you want to leave anyway[\\s\\S]$"));
46 }
47 }