## Description - This PR - improved EnterURL() to - verify for api url entering issue - Improves AssertText() - added new locator (_widgetToVerifyText) for ease of use - Improved StatboxDsl_spec.js validation - Childwigets/List_Select_Widgets_spec.js (DragDrop - trial fix) - Fork_Template_spec.js - trial fix - ServerSide/LoginTests/LoginFailure_spec.js - /OtherUIFeatures/ApplicationURL_spec.js - ListV2/Childwigets/List_Inputs_spec.js - SettingsPane/EmbedSettings_spec.ts - Templates/Fork_Template_Existing_app_spec.js - ListV2/ListV2_SerververSide_spec.js - New TestScript - ConnectionErrors_spec.ts - added - /OtherUIFeatures/ViewMode_spec.js - Apps/PgAdmin_spec.js - trial fix #### Type of change - Script fix (non-breaking change which fixes an issue) ## Testing > #### How Has This Been Tested? - [X] Cypress CI runs ## Checklist: #### QA activity: - [X] Added `Test Plan Approved` label after Cypress tests were reviewed
78 lines
2.3 KiB
TypeScript
78 lines
2.3 KiB
TypeScript
import { ObjectsRegistry } from "../Objects/Registry";
|
|
|
|
// Edit mode modal
|
|
export class Templates {
|
|
private agHelper = ObjectsRegistry.AggregateHelper;
|
|
private homePage = ObjectsRegistry.HomePage;
|
|
public locators = {
|
|
_templatesTab: ".t--templates-tab",
|
|
_forkApp: ".t--fork-template",
|
|
_templateCard: "[data-testid='template-card']",
|
|
_templatesSearchInput: "[data-testid='t--application-search-input']",
|
|
_resultsHeader: "[data-testid='t--application-templates-results-header']",
|
|
_templateViewGoBack: "[data-testid='t--template-view-goback']",
|
|
_templateDialogBox: "[data-testid=t--templates-dialog-component]",
|
|
_closeTemplateDialogBoxBtn: ".ads-v2-modal__content-header-close-button",
|
|
_requestForTemplateBtn: "span:contains('Request for a template')",
|
|
};
|
|
|
|
FilterTemplatesByName(query: string) {
|
|
return ObjectsRegistry.AggregateHelper.TypeText(
|
|
this.locators._templatesSearchInput,
|
|
query,
|
|
);
|
|
}
|
|
|
|
AssertResultsHeaderText(
|
|
text: string,
|
|
textPresence: "have.text" | "contain.text" | "not.have.text" = "have.text",
|
|
) {
|
|
ObjectsRegistry.AggregateHelper.GetNAssertElementText(
|
|
this.locators._resultsHeader,
|
|
text,
|
|
textPresence,
|
|
);
|
|
}
|
|
|
|
GetTemplatesCardsList() {
|
|
return cy.get(this.locators._templateCard);
|
|
}
|
|
|
|
public SwitchToTemplatesTab() {
|
|
cy.url().then((url) => {
|
|
if (!url.endsWith("applications")) {
|
|
this.homePage.NavigateToHome();
|
|
}
|
|
this.agHelper.GetNClick(this.locators._templatesTab);
|
|
this.agHelper.AssertElementVisible(
|
|
this.locators._requestForTemplateBtn,
|
|
0,
|
|
60000,
|
|
); //giving more time here for templates page to fully load, since there is no intercept validation for same
|
|
});
|
|
}
|
|
|
|
RefreshTemplatesPage(
|
|
withDummyData: boolean,
|
|
templateFixture = "Templates/AllowPageImportTemplates.json",
|
|
) {
|
|
if (withDummyData) {
|
|
cy.fixture(templateFixture).then((templatesData) => {
|
|
cy.intercept(
|
|
{
|
|
method: "GET",
|
|
url: "/api/v1/app-templates",
|
|
},
|
|
{
|
|
statusCode: 200,
|
|
body: templatesData,
|
|
},
|
|
);
|
|
});
|
|
}
|
|
cy.intercept("GET", "/api/v1/app-templates/filters").as("fetchFilters");
|
|
this.agHelper.RefreshPage("fetchFilters");
|
|
this.agHelper.AssertElementVisible(this.locators._templateCard);
|
|
}
|
|
}
|