use of com.wikia.webdriver.common.contentpatterns.PalantirContent in project selenium-tests by Wikia.
the class PalantirTests method PalantirTest_004_PalantirSetHugeZoomVerifyError.
@Test(groups = { "PalantirTest_004", "PalantirTests", "InteractiveMaps" })
public void PalantirTest_004_PalantirSetHugeZoomVerifyError() {
InteractiveMapsPageObject specialMap = new InteractiveMapsPageObject();
InteractiveMapPageObject selectedMap = specialMap.openMap(wikiURL, PalantirContent.PALANTIR_MAP);
selectedMap.verifyMapOpened();
PalantirComponentObject poi = new PalantirComponentObject();
PalantirContent handle = poi.setAndVerifyPlayerPosition(-40, -10, 3000, true);
poi.verifyWrongZoomLevel(handle);
poi.verifyPoiNotAppearOnMap();
}
use of com.wikia.webdriver.common.contentpatterns.PalantirContent in project selenium-tests by Wikia.
the class PalantirTests method PalantirTest_002_SetPlayerPositionOutOfMap.
@Test(groups = { "PalantirTest_002", "PalantirTests", "InteractiveMaps" })
public void PalantirTest_002_SetPlayerPositionOutOfMap() {
InteractiveMapsPageObject specialMap = new InteractiveMapsPageObject();
InteractiveMapPageObject selectedMap = specialMap.openMap(wikiURL, PalantirContent.PALANTIR_MAP);
selectedMap.verifyMapOpened();
PalantirComponentObject poi = new PalantirComponentObject();
PalantirContent handle = poi.setAndVerifyPlayerPosition(9300, 15000, 3, true);
poi.verifyWrongPlayerPos(handle);
poi.verifyPoiNotAppearOnMap();
}
Aggregations