Files
palemoon27/mobile/android/base/tests/testLoad.java
T
2018-07-24 23:11:02 +08:00

24 lines
611 B
Java

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.goanna.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);
blockForGoannaReady();
loadAndVerifyBoxes(url);
verifyUrl(url);
}
}