Ocelot-Social/cypress/integration/Post.Create/I_choose_{string}_as_the_title.js

8 lines
303 B
JavaScript

import { When } from "cypress-cucumber-preprocessor/steps";
When("I choose {string} as the title", async title => {
const lastPost = {}
lastPost.title = title.replace("\n", " ");
cy.task('pushValue', { name: 'lastPost', value: lastPost })
cy.get('input[name="title"]').type(lastPost.title);
});