mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
20 lines
403 B
Java
20 lines
403 B
Java
package org.mozilla.gecko.tests;
|
|
|
|
/**
|
|
* A basic page load test.
|
|
* - loads a page
|
|
* - verifies it rendered properly
|
|
* - verifies the displayed url is correct
|
|
*/
|
|
public class testLoad extends PixelTest {
|
|
public void testLoad() {
|
|
String url = getAbsoluteUrl(StringHelper.ROBOCOP_BOXES_URL);
|
|
|
|
blockForGeckoReady();
|
|
|
|
loadAndVerifyBoxes(url);
|
|
|
|
verifyUrl(url);
|
|
}
|
|
}
|