001/**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.labs.kitchensink;
017
018import org.junit.Test;
019
020/**
021 * @author Kuali Rice Team (rice.collab@kuali.org)
022 */
023
024public class LabsButtonHeaderLevelAft extends LabsKitchenSinkBase {
025
026    public static final String BOOKMARK_URL = "/kr-krad/uicomponents?viewId=UifCompView&formKey=a9ce648c-c2e6-408f-ab0c-7628f99ee6a0&cacheKey=oc9kb09wqws0vik3bdahh&pageId=UifCompView-Page8#UifCompView-Page8";
027
028    @Override
029    protected String getBookmarkUrl() {
030        return BOOKMARK_URL;
031    }
032
033        @Override
034        protected void navigate() throws Exception {
035                navigateToKitchenSink("Button/Header Levels");
036        }
037        
038        @Test
039    public void testButtonHeaderLevelBookmark() throws Exception {
040        testButtonHeaderLevel();
041        passed();
042    }
043
044    @Test
045    public void testButtonHeaderLevelNav() throws Exception {
046        testButtonHeaderLevel();
047        passed();
048    }
049    
050    protected void testButtonHeaderLevel() throws InterruptedException 
051    {
052        //Buttons
053        waitAndClickByXpath("//button[@id='Demo-Primary-Action1']");
054        alertAccept();
055        waitAndClickByXpath("//button[@id='Demo-Primary-Action2']");
056        waitAndClickByXpath("//button[@id='Demo-Secondary-Action1']");
057        alertAccept();
058        waitAndClickByXpath("//button[@id='Demo-Secondary-Action2']");
059        assertElementPresentByXpath("//a[@id='Demo-Links-Action1']");
060        waitAndClickByXpath("//button[@id='Demo-Primary-Action3']");
061        alertAccept();
062        waitAndClickByXpath("//button[@id='Demo-Primary-Action4']");
063    
064        //Header
065        assertElementPresentByXpath("//h3/span[contains(text(),'H3 Header Title')]");
066        assertElementPresentByXpath("//h4/span[contains(text(),'H4 Header Title')]");
067        assertElementPresentByXpath("//h5/span[contains(text(),'H5 Header Title')]");
068        assertElementPresentByXpath("//h6/span[contains(text(),'H6 Header Title')]");
069        assertElementPresentByXpath("//h3/a/span[contains(text(),'H3 Header Title')]");
070        assertElementPresentByXpath("//h4/a/span[contains(text(),'H4 Header Title')]");
071        assertElementPresentByXpath("//h5/a/span[contains(text(),'H5 Header Title')]");
072        assertElementPresentByXpath("//h6/a/span[contains(text(),'H6 Header Title')]");
073    }
074}