LibreLingo-Serbian-UI-trans.../apps/web/cypress/integration/common/i_click.js

10 lines
229 B
JavaScript

import { Then } from "cypress-cucumber-preprocessor/steps"
Then("I click {string}", (text) => {
cy.contains(text).click()
})
Then("I click the {string} button", (text) => {
cy.get(".lluis-button").contains(text).click()
})