1 19 20 package org.apache.geronimo.testsuite.console; 21 22 import org.testng.annotations.Test; 23 24 29 @Test 30 public class WelcomePortletTest 31 extends ConsoleTestSupport 32 { 33 @Test 34 public void testWelcomeLink() throws Exception { 35 login(); 36 37 selenium.click("link=JVM"); 38 selenium.waitForPageToLoad("30000"); 39 selenium.click("link=Welcome"); 40 selenium.waitForPageToLoad("30000"); 41 assertEquals("Geronimo Console", selenium.getTitle()); 42 assertEquals("Welcome", selenium.getText( 43 "xpath=/html/body/table[@id='rootfragment']/tbody/tr[2]/td/table/tbody/tr[2]/td[4]/table/tbody/tr[1]/td/table/tbody/tr[1]/td/div/table/tbody/tr/td[2]/table/tbody/tr/td[1]/strong")); 44 45 logout(); 46 } 47 } 48 | Popular Tags |