mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-12 23:35:52 +00:00
8 lines
186 B
JavaScript
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");
|
|
});
|