Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 }