michael@0: package org.mozilla.gecko.tests; michael@0: michael@0: /** michael@0: * A basic page load test. michael@0: * - loads a page michael@0: * - verifies it rendered properly michael@0: * - verifies the displayed url is correct michael@0: */ michael@0: public class testLoad extends PixelTest { michael@0: public void testLoad() { michael@0: String url = getAbsoluteUrl("/robocop/robocop_boxes.html"); michael@0: michael@0: blockForGeckoReady(); michael@0: michael@0: loadAndVerifyBoxes(url); michael@0: michael@0: verifyUrl(url); michael@0: } michael@0: }