mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-13 08:24:48 +00:00
8 lines
224 B
JavaScript
8 lines
224 B
JavaScript
import { Then } from "cypress-cucumber-preprocessor/steps";
|
|
|
|
Then("I add all required fields", () => {
|
|
cy.get('input[name="title"]')
|
|
.type('new post')
|
|
.get(".editor .ProseMirror")
|
|
.type('new post content')
|
|
}) |