2022-11-25 04:09:44 -08:00
|
|
|
import { BasePage } from './base';
|
2022-11-11 00:07:14 -08:00
|
|
|
|
|
|
|
export class WorkflowPage extends BasePage {
|
|
|
|
url = '/workflow/new';
|
2022-11-22 01:37:26 -08:00
|
|
|
getters = {
|
2022-11-25 04:09:44 -08:00
|
|
|
workflowNameInput: () =>
|
|
|
|
cy
|
|
|
|
.getByTestId('workflow-name-input', { timeout: 5000 })
|
|
|
|
.then(($el) => cy.wrap($el.find('input'))),
|
2022-11-11 00:07:14 -08:00
|
|
|
workflowImportInput: () => cy.getByTestId('workflow-import-input'),
|
|
|
|
workflowTags: () => cy.getByTestId('workflow-tags'),
|
|
|
|
saveButton: () => cy.getByTestId('save-button'),
|
2022-11-25 04:09:44 -08:00
|
|
|
|
|
|
|
nodeCreatorSearchBar: () => cy.getByTestId('node-creator-search-bar'),
|
|
|
|
nodeCreatorPlusButton: () => cy.getByTestId('node-creator-plus-button'),
|
|
|
|
canvasPlusButton: () => cy.getByTestId('canvas-plus-button'),
|
|
|
|
canvasNodeBox: (nodeDisplayName: string) => {
|
|
|
|
return cy
|
|
|
|
.getByTestId('canvas-node-box-title')
|
|
|
|
.contains(nodeDisplayName)
|
|
|
|
.parents('[data-test-id="canvas-node-box"]');
|
|
|
|
},
|
|
|
|
|
|
|
|
ndvParameterInput: (parameterName: string) =>
|
|
|
|
cy.getByTestId(`parameter-input-${parameterName}`),
|
|
|
|
ndvOutputPanel: () => cy.getByTestId('output-panel'),
|
|
|
|
};
|
|
|
|
|
|
|
|
actions = {
|
|
|
|
addInitialNodeToCanvas: (nodeDisplayName: string) => {
|
|
|
|
this.getters.canvasPlusButton().click();
|
|
|
|
this.getters.nodeCreatorSearchBar().type(nodeDisplayName);
|
|
|
|
this.getters.nodeCreatorSearchBar().type('{enter}{esc}');
|
|
|
|
},
|
|
|
|
addNodeToCanvas: (nodeDisplayName: string) => {
|
|
|
|
this.getters.nodeCreatorPlusButton().click();
|
|
|
|
this.getters.nodeCreatorSearchBar().type(nodeDisplayName);
|
|
|
|
this.getters.nodeCreatorSearchBar().type('{enter}{esc}');
|
|
|
|
},
|
|
|
|
openNodeNdv: (nodeTypeName: string) => {
|
|
|
|
this.getters.canvasNodeBox(nodeTypeName).dblclick();
|
|
|
|
},
|
|
|
|
typeIntoParameterInput: (parameterName: string, content: string) => {
|
|
|
|
this.getters.ndvParameterInput(parameterName).type(content);
|
|
|
|
},
|
|
|
|
executeNodeFromNdv: () => {
|
|
|
|
cy.contains('Execute node').click();
|
|
|
|
},
|
2022-11-11 00:07:14 -08:00
|
|
|
};
|
|
|
|
}
|