* functionality, you may be able to get around the problem by using a filter yourself to manually
* set the content type for '*.html' files.
*/
public void testStaticPage() throws Exception {
WebResponse rs = wc.getResponse( baseUrl + "/simple/static.html" );
Document doc = getDocument( rs );
assertEquals( "[:: Simple page ::]", rs.getTitle() );
assertEquals( "Hello world", doc.getElementWithId( "p" ).getText().toString() );
assertEquals( "footer", doc.getElementWithId( "footer" ).getText().toString() );
assertEquals( "Simple page", doc.getElementWithId( "header" ).getText().toString() );
}