(page, initial)
| 898 | |
| 899 | describe('rich editor with sibling focused input — no keystroke leak', function () { |
| 900 | async function openSiblingPage(page, initial) { |
| 901 | const q = initial != null ? `?initial=${encodeURIComponent(initial)}` : '' |
| 902 | await I.amOnPage(`/form/richtext/${page}${q}`) |
| 903 | await I.waitForFunction(() => window.__editorReady === true, [], 30) |
| 904 | } |
| 905 | |
| 906 | const siblingCases = [ |
| 907 | { name: 'iframe editor (Monaco)', page: 'monaco-with-sibling', selector: 'iframe', path: 'IFRAME' }, |
no test coverage detected