Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
1 package org.mozilla.gecko.tests;
3 /**
4 * A basic page load test.
5 * - loads a page
6 * - verifies it rendered properly
7 * - verifies the displayed url is correct
8 */
9 public class testLoad extends PixelTest {
10 public void testLoad() {
11 String url = getAbsoluteUrl("/robocop/robocop_boxes.html");
13 blockForGeckoReady();
15 loadAndVerifyBoxes(url);
17 verifyUrl(url);
18 }
19 }