import { RealKeys } from '@ephox/agar'; import { describe, it } from '@ephox/bedrock-client'; import { Focus, Insert, Remove, SugarElement } from '@ephox/sugar'; import { TinyDom, TinyHooks } from '@ephox/wrap-mcagar'; import { assert } from 'chai'; import Editor from 'tinymce/core/api/Editor'; describe('webdriver.tinymce.themes.silver.editor.TabbingTest', () => { const hook = TinyHooks.bddSetup({ base_url: '/project/tinymce/js/tinymce', }, []); it('TINY-3707: Should focus on text editor when tabbing into it', async () => { const editor = hook.editor(); const textInput = SugarElement.fromTag('input'); const editorElement = TinyDom.targetElement(editor); Insert.before(editorElement, textInput); Focus.focus(textInput); await RealKeys.pSendKeysOn('input', [ RealKeys.text('\t') ]); assert.isTrue(editor.hasFocus()); Remove.remove(textInput); }); });