mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-27 13:39:44 -08:00
38 lines
1.4 KiB
TypeScript
38 lines
1.4 KiB
TypeScript
|
import { WorkflowPage, NDV, CanvasNode } from '../pages';
|
||
|
|
||
|
const workflowPage = new WorkflowPage();
|
||
|
const ndv = new NDV();
|
||
|
const canvasNode = new CanvasNode();
|
||
|
|
||
|
describe('Data mapping', () => {
|
||
|
before(() => {
|
||
|
cy.resetAll();
|
||
|
cy.skipSetup();
|
||
|
});
|
||
|
|
||
|
beforeEach(() => {
|
||
|
workflowPage.actions.visit();
|
||
|
});
|
||
|
|
||
|
it('Should be able to map expressions from table header', () => {
|
||
|
cy.fixture('Test_workflow-actions_paste-data.json').then((data) => {
|
||
|
cy.get('body').paste(JSON.stringify(data));
|
||
|
});
|
||
|
canvasNode.actions.openNode('Set');
|
||
|
ndv.actions.executePrevious();
|
||
|
ndv.actions.switchInputMode('Table');
|
||
|
ndv.getters.inputDataContainer().get('table', { timeout: 10000 }).should('exist');
|
||
|
|
||
|
ndv.getters.nodeParameters().find('input[placeholder*="Add Value"]').click();
|
||
|
ndv.getters.nodeParameters().find('.el-select-dropdown__list li:nth-child(3)').should('have.text', 'String').click();
|
||
|
ndv.getters.parameterInput('name').should('have.length', 1).find('input').should('have.value', 'propertyName');
|
||
|
ndv.getters.parameterInput('value').should('have.length', 1).find('input').should('have.value', '');
|
||
|
|
||
|
ndv.actions.mapDataFromHeader(1, 'value');
|
||
|
ndv.getters.inlineExpressionEditorInput().should('have.text', '{{ $json.timestamp }}');
|
||
|
|
||
|
ndv.actions.mapDataFromHeader(2, 'value');
|
||
|
ndv.getters.inlineExpressionEditorInput().should('have.text', '{{ $json.timestamp }} {{ $json["Readable date"] }}');
|
||
|
});
|
||
|
});
|