Ocelot-Social/cypress/integration/common/I_search_for_{string}.js
2021-04-14 20:36:14 +02:00

7 lines
191 B
JavaScript

import { When } from "cypress-cucumber-preprocessor/steps";
When("I search for {string}", postTitle => {
cy.get(".searchable-input .ds-select input")
.focus()
.type(postTitle);
});