mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-12 23:35:52 +00:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
import { Then } from "@badeball/cypress-cucumber-preprocessor";
|
|
|
|
Then("I add all required fields", () => {
|
|
cy.get('input[name="title"]')
|
|
.type('new post')
|
|
.get(".editor .ProseMirror")
|
|
.type('new post content')
|
|
})
|