Ocelot-Social/cypress/e2e/Search/I_select_a_post_entry.js

8 lines
186 B
JavaScript

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