forked from electron/electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautofill-spec.ts
47 lines (37 loc) · 1.78 KB
/
autofill-spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { BrowserWindow } from 'electron';
import * as path from 'node:path';
import { expect } from 'chai';
import { closeAllWindows } from './lib/window-helpers';
import { setTimeout } from 'node:timers/promises';
const fixturesPath = path.resolve(__dirname, 'fixtures');
describe('autofill', () => {
afterEach(closeAllWindows);
it('can be selected via keyboard for a <datalist> with text type', async () => {
const w = new BrowserWindow({ show: true });
await w.loadFile(path.join(fixturesPath, 'pages', 'datalist-text.html'));
w.webContents.sendInputEvent({ type: 'keyDown', keyCode: 'Tab' });
const inputText = 'clap';
for (const keyCode of inputText) {
w.webContents.sendInputEvent({ type: 'char', keyCode });
await setTimeout(100);
}
w.webContents.sendInputEvent({ type: 'keyDown', keyCode: 'Down' });
w.webContents.sendInputEvent({ type: 'keyDown', keyCode: 'Enter' });
const value = await w.webContents.executeJavaScript("document.querySelector('input').value");
expect(value).to.equal('Eric Clapton');
});
it('can be selected via keyboard for a <datalist> with time type', async () => {
const w = new BrowserWindow({ show: true });
await w.loadFile(path.join(fixturesPath, 'pages', 'datalist-time.html'));
const inputText = '11P'; // 1:01 PM
for (const keyCode of inputText) {
w.webContents.sendInputEvent({ type: 'keyDown', keyCode: 'Tab' });
w.webContents.sendInputEvent({ type: 'keyDown', keyCode });
w.webContents.sendInputEvent({ type: 'char', keyCode });
await setTimeout(100);
}
w.webContents.sendInputEvent({ type: 'keyDown', keyCode: 'Tab' });
const value = await w.webContents.executeJavaScript("document.querySelector('input').value");
expect(value).to.equal('13:01');
});
});