Search in sources :

Example 11 with TemplateContent

use of com.wikia.webdriver.common.core.api.TemplateContent 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());
}
Also used : ArticleContent(com.wikia.webdriver.common.core.api.ArticleContent) TemplateContent(com.wikia.webdriver.common.core.api.TemplateContent) ArticlePurger(com.wikia.webdriver.common.core.helpers.ArticlePurger) PortableInfobox(com.wikia.webdriver.pageobjectsfactory.pageobject.PortableInfobox) Test(org.testng.annotations.Test)

Example 12 with TemplateContent

use of com.wikia.webdriver.common.core.api.TemplateContent in project selenium-tests by Wikia.

the class PortableInfoboxTests method verifyHorizontalGroupFontSize.

@Test(groups = { "PortableInfoboxTests", "PortableInfobox_001" })
public void verifyHorizontalGroupFontSize() {
    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);
    Assertion.assertEquals(infobox.getItemLabelsFontSize(0), infobox.getHorizontalItemLabelFontSize(0));
    Assertion.assertEquals(infobox.getItemValuesFontSize(0), infobox.getHorizontalItemValuesFontSize(0));
}
Also used : ArticleContent(com.wikia.webdriver.common.core.api.ArticleContent) TemplateContent(com.wikia.webdriver.common.core.api.TemplateContent) PortableInfobox(com.wikia.webdriver.pageobjectsfactory.pageobject.PortableInfobox) Test(org.testng.annotations.Test)

Example 13 with TemplateContent

use of com.wikia.webdriver.common.core.api.TemplateContent in project selenium-tests by Wikia.

the class PortableInfoboxTests method verifyLightboxVisibilityAfterClickingImage.

@InBrowser(browser = Browser.FIREFOX, browserSize = "1200x720")
@Test(groups = { "PortableInfoboxTests", "PortableInfobox_002" })
public void verifyLightboxVisibilityAfterClickingImage() {
    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);
    Assertion.assertTrue(infobox.clickImage().isLightboxVisible());
}
Also used : ArticleContent(com.wikia.webdriver.common.core.api.ArticleContent) TemplateContent(com.wikia.webdriver.common.core.api.TemplateContent) PortableInfobox(com.wikia.webdriver.pageobjectsfactory.pageobject.PortableInfobox) Test(org.testng.annotations.Test) InBrowser(com.wikia.webdriver.common.core.annotations.InBrowser)

Example 14 with TemplateContent

use of com.wikia.webdriver.common.core.api.TemplateContent in project selenium-tests by Wikia.

the class PortableInfoboxTests method verifyElementsVisibility.

@Test(groups = { "PortableInfoboxTests", "PortableInfobox_001" })
public void verifyElementsVisibility() {
    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);
    Assertion.assertTrue(infobox.getHeadersNumber() > 0);
    Assertion.assertTrue(infobox.isImageVisible());
    Assertion.assertTrue(infobox.isInfoboxTitleVisible());
    Assertion.assertTrue(infobox.getBoldElementsNumber() > 0);
    Assertion.assertTrue(infobox.getItalicElementsNumber() > 0);
    Assertion.assertTrue(infobox.areQuotationMarksPresented());
    Assertion.assertTrue(infobox.isReferenceElementVisible());
}
Also used : ArticleContent(com.wikia.webdriver.common.core.api.ArticleContent) TemplateContent(com.wikia.webdriver.common.core.api.TemplateContent) PortableInfobox(com.wikia.webdriver.pageobjectsfactory.pageobject.PortableInfobox) Test(org.testng.annotations.Test)

Example 15 with TemplateContent

use of com.wikia.webdriver.common.core.api.TemplateContent 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());
}
Also used : ArticleContent(com.wikia.webdriver.common.core.api.ArticleContent) TemplateContent(com.wikia.webdriver.common.core.api.TemplateContent) ArticlePurger(com.wikia.webdriver.common.core.helpers.ArticlePurger) PortableInfobox(com.wikia.webdriver.pageobjectsfactory.pageobject.PortableInfobox) SpecialThemeDesignerPageObject(com.wikia.webdriver.pageobjectsfactory.pageobject.special.themedesigner.SpecialThemeDesignerPageObject) Execute(com.wikia.webdriver.common.core.annotations.Execute) Test(org.testng.annotations.Test)

Aggregations

ArticleContent (com.wikia.webdriver.common.core.api.ArticleContent)15 TemplateContent (com.wikia.webdriver.common.core.api.TemplateContent)15 Test (org.testng.annotations.Test)15 PortableInfobox (com.wikia.webdriver.pageobjectsfactory.pageobject.PortableInfobox)14 ArticlePurger (com.wikia.webdriver.common.core.helpers.ArticlePurger)3 Execute (com.wikia.webdriver.common.core.annotations.Execute)2 CategoryPageObject (com.wikia.webdriver.pageobjectsfactory.pageobject.category.CategoryPageObject)2 InBrowser (com.wikia.webdriver.common.core.annotations.InBrowser)1 ArticlePageObject (com.wikia.webdriver.pageobjectsfactory.pageobject.article.ArticlePageObject)1 SpecialWhatLinksHerePageObject (com.wikia.webdriver.pageobjectsfactory.pageobject.special.SpecialWhatLinksHerePageObject)1 SpecialThemeDesignerPageObject (com.wikia.webdriver.pageobjectsfactory.pageobject.special.themedesigner.SpecialThemeDesignerPageObject)1