I am trying to write tests for one of our rich text components which was implemented with slate js editor in react js. So when writing tests, I am retrieveing the element div[contenteditable='true'], but not able to simulate events like change, blur, focus. The handlers attached to editor component are not getting called. I tried multiple combinations, but no luck. Can someone please help on this? Is it possible to simulate events for contenteditable element using testing library (contenteditable is implemented using slatejs)?
How to test `contenteditable` events with React Testing Library
2.7k Views Asked by Rekha At
1
There are 1 best solutions below
Related Questions in REACTJS
- What is `_dereq_()` inside React?
- React TypeError: React.renderComponent is not a function
- React - saving a component in the ref callback
- React Rails component: manually triggering a re-render
- React, ES6 - getInitialState was defined on a plain JavaScript class
- How to get multiple selected options value in React JS?
- React.render replace container instead of inserting into
- reactjs datagrid use html
- props is not initialized in react component
- How to display xml data using Reactjs
- hooking up the data model in ReactJS - syntax
- ReactJS: How to use an immutable empty array or object
- How to use Sinon.js FakeXMLHttpRequest with superagent?
- React select onChange is not working
- ReactJS - Tutorial Comment System > Threaded commenting
Related Questions in CONTENTEDITABLE
- Skipping an element in CKEditor
- javasscript allow writing rtl and ltr in sentence
- How to resize or edit the buttons in html, using contenteditable attributes?
- Insert div in contenteditable
- Line height doesn't affect first line in contenteditable
- CKEditor is omitting spaces in IE and FF
- contenteditable shows markup at the result
- Get alt attribute of images inside a Contenteditable div and replace the image
- Sortable table rows using one column
- Adding bdi tag to contenteditable
- How can you drop an image from your desktop into an editor and move it around?
- HTML5 contenteditable new line jumps twice
- medium-editor and pasteHTML keeps cursor within pasted html
- HTML5 contenteditable - child block element with contenteditable=false prevents getting focus on parent
- Get Value Of Text/HTML Slection BEFORE KeyDown Event In Javascript
Related Questions in REACT-TESTING-LIBRARY
- React Testing Library / Jest Update not wrapped in act(...)
- Mock window.close() in React-testing-library
- How to mock input change for filtering data based on input string using react testing library?
- How to insert real File object to function in React unit tests
- Stop huge error output from testing-library
- How can I prevent a React state update on an unmounted component in my integration testing?
- Mutation observer is not a constructor (Jest)
- Enable/disable submit button base on useState boolean values changes true/false using react jest testing library
- How to properly test promises
- Why does the `render(...)` result change after the first `it` it callback?
- problem for mocking redux action creators functions in connected component
- Receiving error 'SyntaxError: Unexpected identifier' for import statement using Jest with React
- How to write spyOn custom hook
- React-testing-library and <Link> Element type is invalid: expected a string or a class/function but got: undefined
- How to test the style of a div within a React component
Related Questions in SLATEJS
- How to test `contenteditable` events with React Testing Library
- How to goto next line when focus the Image block?
- How to make SlateJS editor look like a MUI TextField?
- Is there a way to trigger an event when you backspace and delete an image using slate.js?
- Insert tab character into SlateJS text editor
- How do I make a specific word uneditable in Slate.js?
- Replace all PlateJS editor contents with another one
- Slatejs editor.selection returns null on popovers?
- SlateJS + redux
- Slate JS: set the prop as the Editor's value
- get copied content inside onCopy hook (plugin)
- slate.js based reactjs rich text editor reverse engineering
- Image insertion at cursor in editor using slatejs
- TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Node'
- How to pass events in the SLATEJS rich text editor
Related Questions in TESTING-LIBRARY
- fireEvent doesn't click button on React component
- How to combine configuration of enzyme and react-testing-library in setup.test.js
- How to test `contenteditable` events with React Testing Library
- How to test next/image's onError in Storybook play function?
- replace an API during tests in the Jest environment for React Native for axios AxiosInstance
- How to test if the rows are filtered in a table with testing library
- How can I effectively test SvelteKit components, including monitoring reactive properties and props passed to child components?
- Invalid Chai property in Vitest
- Testing Library (VueJS) - Rendering multiple components in a it block
- @testing-library/react-native How should I test the BackHandler Alert and handle ok and cancel button?
- Testing Angular Output without spying on the component instance
- Why can't @testing-library/user-event interact with input elements?
- when using create-react-app dependencies @testing-library could not resolve
- React Native: 'Jest did not exit one second after the test run has completed' with @testing-library/react-hooks and react-query
- ReferenceError: document is not defined when doing svelte tests
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Like you've discovered,
contenteditableisn't supported by JSDOM. React Testing Library (RTL) is built on top of JSDOM, so it's not possible to test the Slate editor properly with RTL until JSDOM implements support forcontenteditable.Use a browser automation library together with Testing Library
Your options are then to use a tool that creates a real browser context. Testing Library have integrations with many tools that do exactly that: TestCafe, Cypress, Nightwatch, Puppeteer.
You can also use the above tools on their own, without Testing Library.
I've solved this using Puppeteer, and there are two approaches:
localhost:3000page.setContent(htmlString)(1) is the most common, and you'll find many guides for this since it's a common approach for end-to-end testing (google search).
(2) is a little trickier because you will have to transform and bundle your source for each test, and then inject it as HTML into the browser page. I prefer this approach because the testing experience is much more similar to using RTL. I've created a repository with an example of this setup with the Slate editor here: https://github.com/marcusstenbeck/puppeteer-react-testing-template/