From e4760a04163c8e403bfb321a1da33ff37228dc4e Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Tue, 16 Apr 2019 21:16:47 +0900 Subject: Add e2e tests for completions --- e2e/lib/Console.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 e2e/lib/Console.js (limited to 'e2e/lib') diff --git a/e2e/lib/Console.js b/e2e/lib/Console.js new file mode 100644 index 0000000..a3391ee --- /dev/null +++ b/e2e/lib/Console.js @@ -0,0 +1,33 @@ +class Console { + constructor(session) { + this.session = session; + } + + async sendKeys(...keys) { + let input = await this.session.findElementByCSS('input'); + input.sendKeys(...keys); + } + + async getCompletions() { + return await this.session.executeScript(() => { + let items = document.querySelectorAll('.vimvixen-console-completion > li'); + if (items.length === 0) { + throw new Error('completion items not found'); + } + + let objs = []; + for (let li of items) { + if (li.classList.contains('vimvixen-console-completion-title')) { + objs.push({ type: 'title', text: li.textContent.trim() }); + } else if ('vimvixen-console-completion-item') { + objs.push({ type: 'item', text: li.textContent.trim() }); + } else { + throw new Error(`unexpected class: ${li.className}`); + } + } + return objs; + }); + } +} + +module.exports = Console; -- cgit v1.2.3