X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8516425bd1c541476dc2d5cb00a762691cd753e1..ea1216cb8346848cb2f8dd09fda14803c83d3557:/cypress/support/commands.js diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 228e1cabb1..bba04ba859 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -116,6 +116,16 @@ Cypress.Commands.add( } ) + +Cypress.Commands.add( + "createWorkflow", (token, data) => { + return cy.createResource(token, 'workflows', { + workflow: JSON.stringify(data), + ensure_unique_name: true + }) + } +) + Cypress.Commands.add( "createCollection", (token, data) => { return cy.createResource(token, 'collections', { @@ -171,3 +181,9 @@ Cypress.Commands.add( cy.get('div#root').should('not.contain', 'Your account is inactive'); } ) + +Cypress.Commands.add( + "doSearch", (searchTerm) => { + cy.get('[data-cy=searchbar-input-field]').type(`{selectall}${searchTerm}{enter}`); + } +) \ No newline at end of file