Update page.spec.js

This commit is contained in:
Dmitry Gozman 2020-02-18 17:30:15 -08:00 committed by GitHub
parent 2f6ce8ee6a
commit c39dbef147
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1044,7 +1044,7 @@ module.exports.describe = function({testRunner, expect, headless, playwright, FF
await page.fill('body', 'some value');
expect(await page.evaluate(() => document.body.textContent)).toBe('some value');
});
fit('should be able to fill when focus is in the wrong frame', async({page}) => {
it('should be able to fill when focus is in the wrong frame', async({page}) => {
await page.setContent(`
<div contentEditable="true"></div>
<iframe></iframe>