diff --git a/cypress-tests/cypress/constants/selectors/postgreSql.js b/cypress-tests/cypress/constants/selectors/postgreSql.js index 626d8844ad..4f38357961 100644 --- a/cypress-tests/cypress/constants/selectors/postgreSql.js +++ b/cypress-tests/cypress/constants/selectors/postgreSql.js @@ -90,9 +90,9 @@ export const postgreSqlSelector = { }; export const airTableSelector = { - operationSelectDropdown: '[data-cy="query-select-dropdown"]', + operationSelectDropdown: '[data-cy="operation-select-dropdown"]', baseIdInputField: '[data-cy="base-id-input-field"]', tableNameInputField: '[data-cy="table-name-input-field"]', recordIdInputField: '[data-cy="record-id-input-field"]', bodyInputField: '[data-cy="body-input-field"]', -}; \ No newline at end of file +}; diff --git a/cypress-tests/cypress/e2e/happyPath/marketplace/commonTestcases/data-source/baseRow.cy.js b/cypress-tests/cypress/e2e/happyPath/marketplace/commonTestcases/data-source/baseRow.cy.js index b90e6aa580..4c0532a9ca 100644 --- a/cypress-tests/cypress/e2e/happyPath/marketplace/commonTestcases/data-source/baseRow.cy.js +++ b/cypress-tests/cypress/e2e/happyPath/marketplace/commonTestcases/data-source/baseRow.cy.js @@ -193,7 +193,7 @@ describe("Data source baserow", () => { ]; operations.forEach((operation) => { - cy.get('[data-cy="query-select-dropdown"]').click(); + cy.get(pluginSelectors.operationDropdown).click(); cy.get(".react-select__option").contains(operation).click(); cy.get(baserowSelectors.table).clearAndTypeOnCodeMirror(baserowTableID);