Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

utils TCP4-3183 #335

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pages/executionConnectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ export class ExecutionConnectors {
actionsAndAssertionsOfTCP43183(name) {
let timeStamp = new Date().getTime();
let dataConnectorName = "TCP4-3183-Data Connector" + timeStamp;
let dataConnectorDescription = "TCP4-3183";
let dataConnectorDescription = "Description TCP4-3183";
let dataconnectorType = "No Auth";

//Step 1: Create Data connector
Expand All @@ -509,14 +509,14 @@ export class ExecutionConnectors {
cy.xpath(selectors.assignProjects).should("be.visible");
cy.xpath(selectors.assignProjects).click({ force: true });
cy.get('[class="modal-content"]').should("be.visible");
cy.get('#nav-collapse > div > div',{timeout: 10000}).should("be.visible");
cy.get('#nav-collapse > div > div',{timeout: 12000}).should("be.visible");

//Step 4: verify that the process is added to the project
navHelper.navigateToPmProjects();
pmProjects.searchProjectsAndSelectOptions(name, "open");
request.waitUntilElementIsVisible('selector','[data-cy="asset-listing-table"]');
cy.get('.search-bar > .search-bar-container > .pmql-input').should('be.visible');
cy.get('.search-bar > .search-bar-container > .pmql-input').type(dataConnectorName,{delay:20}).type('{enter}').should('have.value',dataConnectorName);
cy.get('.search-bar > .search-bar-container > .pmql-input').type(dataConnectorName,{delay:35}).type('{enter}').should('have.value',dataConnectorName);
cy.xpath('//tbody[@class="vuetable-body"]//tr//a').should('contain',dataConnectorName);
}
actionsAndAssertionsOfTCP42963(processName){
Expand Down
Loading