PassionTeaCoWelcomePO.java

The following code is for the PassionTeaCoWelcomePO.java class:

import org.openqa.selenium.*;import org.openqa.selenium.support.FindBy;import static org.testng.Assert.assertEquals;/** * @author Carl Cocchiaro * * Passion Tea Company Welcome Sub-class Page Object Class * */public class PassionTeaCoWelcomePO<M extends WebElement> extends PassionTeaCoBasePO<M> {    // local variables    private static final String WELCOME_TITLE = "Welcome";    private static final String MENU_TITLE = "Menu";    protected static enum WELCOME_PAGE_IMG    { PASSION_TEA_CO, LEAF, ORGANIC, TEA_CUP, HERBAL_TEA, LOOSE_TEA,       FLAVORED_TEA };    protected static enum MENU_LINKS    { MENU, MORE_1, MORE_2, HERBAL_TEA, LOOSE_TEA, FLAVORED_TEA,       SEE_COLLECTION1, SEE_COLLECTION2 ...

Get Selenium Framework Design in Data-Driven Testing now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.