mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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);
|
|
}
|
|
}
|