Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 1.18 KB

README.md

File metadata and controls

42 lines (27 loc) · 1.18 KB

GitHub package.json version Travis (.org) npm (scoped)

cypress-tincymce

Extra helper Cypress custom commands for easier interacting with TinyMCE.

commands

getTinyMce(id)

This will return the tinymce js instance for the given id.

setTinyMceContent(id, text)

This will set the content of the TinyMCE editor:

  cy.setTinyMceContent('someid', 'This is the new content');

getTinyMceContent(id)

This will return the content of the TinyMce editor for the given id.

  cy.getTinyMceContent('someid');

Installation

yarn add @foreachbe/cypress-tinymce -D

Add the following to your cypress/support/index file:

import '@foreachbe/cypress-tinymce'