mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix: Add Exact Match Option for NDV (no-changelog) (#15787)
Co-authored-by: Eugene Molodkin <eugene@n8n.io>
This commit is contained in:
@@ -36,6 +36,10 @@ export function getInputSelect() {
|
||||
return cy.getByTestId('ndv-input-select').find('input');
|
||||
}
|
||||
|
||||
export function getInputLinkRun() {
|
||||
return getInputPanel().findChildByTestId('link-run');
|
||||
}
|
||||
|
||||
export function getMainPanel() {
|
||||
return cy.getByTestId('node-parameters');
|
||||
}
|
||||
@@ -68,6 +72,14 @@ export function getInputTbodyCell(row: number, col: number) {
|
||||
return getInputTableRows().eq(row).find('td').eq(col);
|
||||
}
|
||||
|
||||
export function getInputRunSelector() {
|
||||
return getInputPanel().findChildByTestId('run-selector');
|
||||
}
|
||||
|
||||
export function getInputPanelItemsCount() {
|
||||
return getInputPanel().getByTestId('ndv-items-count');
|
||||
}
|
||||
|
||||
export function getOutputPanelDataContainer() {
|
||||
return getOutputPanel().findChildByTestId('ndv-data-container');
|
||||
}
|
||||
@@ -329,3 +341,7 @@ export function resetHoverState() {
|
||||
export function setInputDisplayMode(mode: 'Schema' | 'Table' | 'JSON' | 'Binary') {
|
||||
getInputPanel().findChildByTestId('ndv-run-data-display-mode').contains(mode).click();
|
||||
}
|
||||
|
||||
export function toggleInputRunLinking() {
|
||||
getInputLinkRun().click();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user