Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
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 }