@10up/cypress-wp-utils
    Preparing search index...
    • Create Post in Classic Editor

      Parameters

      Returns void

      cy.classicCreatePost({
      title: 'Post title',
      content: 'Post content',
      beforeSave: () => {
      // Do something before save.
      },
      postType: 'page',
      status: 'draft'
      }).then(postID => {
      cy.log(postID);
      })