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 */
016 package edu.sampleu.admin;
017
018 /**
019 * @author Kuali Rice Team (rice.collab@kuali.org)
020 */
021 public abstract class ConfigComponentAftBase extends AdminTmplMthdAftNavBase {
022
023 protected void createNewEnterDetails() throws InterruptedException {
024 waitAndTypeByName("document.documentHeader.documentDescription", getDescriptionUnique());
025 selectOptionByName("document.newMaintainableObject.namespaceCode", namespaceCode);
026 jiraAwareTypeByName("document.newMaintainableObject.code", "code" + uniqueString);
027 jiraAwareTypeByName("document.newMaintainableObject.name", "name" + uniqueString);
028 }
029
030 /**
031 * {@inheritDoc}
032 * Component
033 * @return
034 */
035 @Override
036 protected String getLinkLocator() {
037 return "Component";
038 }
039
040 protected void saveAndClose() throws InterruptedException {
041 checkForDocError();
042 waitAndClickByName("methodToCall.save");
043 waitForTextPresent("Document was successfully saved");
044 waitAndClickByName("methodToCall.close");
045 // waitAndClickByName("methodToCall.processAnswer.button1");
046 }
047
048 protected void submitAndClose() throws InterruptedException {
049 checkForDocError();
050 waitAndClickByName("methodToCall.route");
051 waitForTextPresent("Document was successfully submitted");
052 waitAndClickByName("methodToCall.close");
053 // waitAndClickByName("methodToCall.processAnswer.button1");
054 }
055 }