Package com.motability.document.pageobjects.doctemplate

Examples of com.motability.document.pageobjects.doctemplate.DocumentTemplateEditPage


    @When("^updating a document template with name '(.*)' to name '(.*)'$")
    public void updating_a_document_template_with_name_before_to_name_After(String templateBefore, String templateAfter)
                              throws Throwable {
  assertTrue("Was not at Show document template page", showPage != null && showPage.isDisplayed());
  DocumentTemplateListPage listPage = showPage.openListDocumentTemplatesPage();
  DocumentTemplateEditPage editPage =
              listPage.openShowDocumentTemplatePage(templateBefore)
                .openEditDocumentTemplatePage();
  showPage = editPage.updateName(templateAfter);
    }
View Full Code Here

TOP

Related Classes of com.motability.document.pageobjects.doctemplate.DocumentTemplateEditPage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.