()
| 89 | } |
| 90 | |
| 91 | function selectAllInFrameScript() { |
| 92 | const el = document.querySelector('[data-codeceptjs-rte-target]') || document.body |
| 93 | el.focus() |
| 94 | const range = document.createRange() |
| 95 | range.selectNodeContents(el) |
| 96 | const sel = window.getSelection() |
| 97 | sel.removeAllRanges() |
| 98 | sel.addRange(range) |
| 99 | return document.activeElement === el |
| 100 | } |
| 101 | |
| 102 | function selectAllInEditable(el) { |
| 103 | const doc = el.ownerDocument |