feat(editor): Add Info Note to NDV Output Panel if no existing Tools were used during Execution (#11672)

This commit is contained in:
Charlie Kolb
2024-11-19 13:11:12 +01:00
committed by GitHub
parent e298ebe90d
commit de0e86150f
6 changed files with 145 additions and 1 deletions

View File

@@ -72,6 +72,10 @@ export function getOutputPanelTable() {
return getOutputPanelDataContainer().get('table');
}
export function getRunDataInfoCallout() {
return cy.getByTestId('run-data-callout');
}
export function getOutputPanelItemsCount() {
return getOutputPanel().getByTestId('ndv-items-count');
}