tester.startPage(p);
}
public void assertNotContains(String message, String string)
{
Result r = tester.ifContains("^((?!" + string + ").)*$");
if (r.wasFailed())
{
throw new ComparisonFailure("String [" + string
+ "] found in page, but shouldn't be there: " + message, string, "@page");
}
}