feat(editor): VariablesView Reskin - Add Filters for missing values (#12611)

This commit is contained in:
Raúl Gómez Morales
2025-01-20 10:59:15 +01:00
committed by GitHub
parent 652b8d170b
commit 1eeb788d32
16 changed files with 832 additions and 841 deletions

View File

@@ -68,7 +68,10 @@ export class VariablesPage extends BasePage {
},
setRowValue: (row: Chainable<JQuery<HTMLElement>>, field: 'key' | 'value', value: string) => {
row.within(() => {
cy.getByTestId(`variable-row-${field}-input`).type('{selectAll}{del}').type(value);
cy.getByTestId(`variable-row-${field}-input`)
.find('input, textarea')
.type('{selectAll}{del}')
.type(value);
});
},
cancelRowEditing: (row: Chainable<JQuery<HTMLElement>>) => {