611a4bec43a8ef39ba5af659f0ee9d22921638ae
[pithos] / test / gr / ebs / gss / client / selenium / ide / tests / IDERightClick.java
1 /*
2  * Copyright 2011 Electronic Business Systems Ltd.
3  *
4  * This file is part of GSS.
5  *
6  * GSS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GSS is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package gr.ebs.gss.client.selenium.ide.tests;
20
21 import org.junit.After;
22 import org.junit.Before;
23 import org.junit.Test;
24
25 import com.thoughtworks.selenium.*;
26
27 import org.junit.After;
28 import org.junit.Before;
29 import org.junit.Test;
30
31
32
33 public class IDERightClick extends SeleneseTestCase{
34         
35         /**
36          * TIP: Start the Selenium RC serve using
37          * in the dependencies directory
38          * java -jar selenium-server-standalone-2.0b1.jar
39          */
40         
41         @Before
42         public void setUp() throws Exception {
43                 selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://127.0.0.1:8080/pithos/login?next=http://127.0.0.1:8080/pithos/");
44 //              setUp("http://127.0.0.1:8080/pithos/login?next=http://127.0.0.1:8080/pithos/", "*firefox");
45
46                 selenium.start();
47         }
48         
49         @After
50         public void tearDown() throws Exception {
51                 selenium.stop();
52         }
53
54         @Test
55         public void testRestoreTrash() throws Exception {
56 //              selenium.open("/pithos/#Files");
57                 selenium.open("http://127.0.0.1:8080/pithos/login?next=http://127.0.0.1:8080/pithos/");
58                 selenium.waitForPageToLoad("300000");
59                 selenium.click("lakis@ebs.gr");         
60                 selenium.contextMenuAt("Trash", "");            
61                 selenium.click("folderContextMenu.restore");
62         
63         }
64
65 }