1 19 20 package org.apache.geronimo.testsuite.servlets; 21 22 23 import org.apache.geronimo.testsupport.SeleniumTestSupport; 24 import org.testng.annotations.Test; 25 26 public class TestServlets extends SeleniumTestSupport 27 { 28 @Test 29 public void testIndexContent() throws Exception { 30 selenium.open("/SampleServlet"); 31 selenium.waitForPageToLoad("30000"); 32 assertEquals("Sample application with Servlets 2.5", selenium.getTitle()); 33 assertEquals("Welcome to Servlets 2.5 samples..!!!", selenium.getText("xpath=/html/body")); 34 } 35 } | Popular Tags |