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

7 lines
180 B
JavaScript

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