1 19 20 package org.apache.geronimo.testsuite.console; 21 22 import org.testng.annotations.Test; 23 24 29 @Test 30 public class LinkCheckTest 31 extends ConsoleTestSupport 32 { 33 @Test 34 public void testServerInfoLink() throws Exception { 35 login(); 36 37 selenium.click("link=Information"); 38 selenium.waitForPageToLoad("30000"); 39 assertEquals("Geronimo Console", selenium.getTitle()); 40 41 assertTrue(selenium.isTextPresent("Geronimo Version")); 42 assertTrue(selenium.isTextPresent("Geronimo Start Time")); 43 44 assertEquals("Server Info", selenium.getText( 45 "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")); 46 47 logout(); 48 } 49 } 50 51 | Popular Tags |