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

7 lines
183 B
JavaScript

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