Ocelot-Social/cypress/integration/User.Block/I_should_see_the_{string}_button.js
2021-04-12 13:24:52 +02:00

6 lines
199 B
JavaScript

import { Then } from "cypress-cucumber-preprocessor/steps";
Then('I should see the {string} button', button => {
cy.get('.base-card .action-buttons .base-button')
.should('contain', button)
})