Ocelot-Social/cypress/integration/Search/I_select_a_post_entry.js
2021-04-12 13:24:51 +02:00

7 lines
181 B
JavaScript

import { When } from "cypress-cucumber-preprocessor/steps";
When("I select a post entry", () => {
cy.get(".searchable-input .search-post")
.first()
.trigger("click");
});