Is there a way to get the actual DOM node so I can the query it with the Dom api as opposed to being required to use enzyme\'s api, it\'s just for edge cases where for examp
You can use soemething like :
const dialog = component.find(Modal); let modal = dialog.node._modal; modal.getDialogElement().querySelector('#saveBtn')
based on the test for Modal in react-bootstrap web site
https://github.com/react-bootstrap/react-bootstrap/blob/master/test/ModalSpec.js