use of com.wikia.webdriver.common.core.helpers.ArticlePurger in project selenium-tests by Wikia.
the class PortableInfoboxTests method verifyVisibilityOfTabberAndItsImages.
@Test(groups = { "PortableInfoboxTests", "PortableInfobox_002" })
public void verifyVisibilityOfTabberAndItsImages() {
new TemplateContent().push(INFOBOX2_TEMPLATE, PageContent.INFOBOX_2);
new ArticleContent().push(INFOBOX2_INVOCATION, PageContent.INFOBOX_2);
PortableInfobox infobox = new PortableInfobox();
infobox.open(PageContent.INFOBOX_2);
new ArticlePurger().purgeArticleAsAnon();
Assertion.assertTrue(infobox.isTabberVisible().isTabberImageVisible());
}
use of com.wikia.webdriver.common.core.helpers.ArticlePurger in project selenium-tests by Wikia.
the class PortableInfoboxTests method editInfoboxInVEbyPopup.
@Test(groups = { "PortableInfoboxTests", "PortableInfobox_003" })
public void editInfoboxInVEbyPopup() {
new ArticleContent().clear();
ArticlePageObject article = new ArticlePageObject();
article.open();
new ArticlePurger().purgeArticleAsAnon();
VisualEditorPageObject visualEditor = article.openVEModeWithMainEditButton().clickInsertToolButton().clickInsertInfoboxFromInsertToolMenu().selectInfoboxTemplate(2).typeInParameterField(0, new SourceEditModePageObject(driver).getRandomDigits(5)).applyChanges();
Assertion.assertTrue(visualEditor.isInfoboxInsertedInEditorArea());
visualEditor.clickEditArea();
visualEditor.clickInfobox();
visualEditor.clickInfoboxPopup().typeInParameterField(2, new SourceEditModePageObject(driver).getRandomDigits(5)).applyChanges();
Assertion.assertTrue(visualEditor.isInfoboxInsertedInEditorArea());
}
use of com.wikia.webdriver.common.core.helpers.ArticlePurger in project selenium-tests by Wikia.
the class PortableInfoboxTests method verifyInfoboxLayoutChange.
@Test(groups = { "PortableInfoboxTests", "PortableInfobox_002" })
@Execute(asUser = User.STAFF)
public void verifyInfoboxLayoutChange() {
new TemplateContent().push(INFOBOX2_TEMPLATE, PageContent.INFOBOX_2);
new ArticleContent().push(INFOBOX2_INVOCATION, PageContent.INFOBOX_2);
PortableInfobox infobox = new PortableInfobox();
SpecialThemeDesignerPageObject theme = new SpecialThemeDesignerPageObject(driver);
theme.openSpecialDesignerPage(wikiURL).selectTheme(4);
theme.submitTheme();
infobox.open(PageContent.INFOBOX_2);
new ArticlePurger().purgeArticleAsLoggedUser();
String oldBackground = infobox.getBackgroundColor();
theme.openSpecialDesignerPage(wikiURL).selectTheme(1);
theme.submitTheme();
infobox.open(PageContent.INFOBOX_2);
new ArticlePurger().purgeArticleAsLoggedUser();
Assertion.assertNotEquals(oldBackground, infobox.getBackgroundColor());
}
Aggregations