Ocelot-Social/cypress/integration/Post.Create/I_click_on_{string}.js

6 lines
135 B
JavaScript

import { When } from "cypress-cucumber-preprocessor/steps";
When(`I click on {string}`, text => {
cy.contains(text)
.click()
});