mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import expect from 'expect';
|
|
|
|
import {getTestState, setupTestBrowserHooks} from './mocha-utils.js';
|
|
|
|
describe('Autofill', function () {
|
|
setupTestBrowserHooks();
|
|
describe('ElementHandle.autofill', () => {
|
|
it('should fill out a credit card', async () => {
|
|
const {page, server} = await getTestState();
|
|
await page.goto(server.PREFIX + '/credit-card.html');
|
|
using name = await page.waitForSelector('#name');
|
|
await name!.autofill({
|
|
creditCard: {
|
|
number: '4444444444444444',
|
|
name: 'John Smith',
|
|
expiryMonth: '01',
|
|
expiryYear: '2030',
|
|
cvc: '123',
|
|
},
|
|
});
|
|
expect(
|
|
await page.evaluate(() => {
|
|
const result = [];
|
|
for (const el of document.querySelectorAll('input')) {
|
|
result.push(el.value);
|
|
}
|
|
return result.join(',');
|
|
})
|
|
).toBe('John Smith,4444444444444444,01,2030,Submit');
|
|
});
|
|
});
|
|
});
|