mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
d76166beca
This patch moves fixtures.js to base.fixtures.ts that sits next to tests. All tests get an extra import to get the base fixtures (both types and implementations).
61 lines
2.2 KiB
JavaScript
61 lines
2.2 KiB
JavaScript
/**
|
|
* Copyright 2018 Google Inc. All rights reserved.
|
|
* Modifications copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
require('./base.fixture');
|
|
|
|
const utils = require('./utils');
|
|
const { FFOX, HEADLESS } = testOptions;
|
|
|
|
it('should work', async ({ page }) => {
|
|
await page.setContent(`<input type='text' />`);
|
|
await page.type('input', 'hello');
|
|
expect(await page.$eval('input', input => input.value)).toBe('hello');
|
|
});
|
|
|
|
it('should not select existing value', async ({ page }) => {
|
|
await page.setContent(`<input type='text' value='hello' />`);
|
|
await page.type('input', 'world');
|
|
expect(await page.$eval('input', input => input.value)).toBe('worldhello');
|
|
});
|
|
|
|
it('should reset selection when not focused', async ({ page }) => {
|
|
await page.setContent(`<input type='text' value='hello' /><div tabIndex=2>text</div>`);
|
|
await page.$eval('input', input => {
|
|
input.selectionStart = 2;
|
|
input.selectionEnd = 4;
|
|
document.querySelector('div').focus();
|
|
});
|
|
await page.type('input', 'world');
|
|
expect(await page.$eval('input', input => input.value)).toBe('worldhello');
|
|
});
|
|
|
|
it('should not modify selection when focused', async ({ page }) => {
|
|
await page.setContent(`<input type='text' value='hello' />`);
|
|
await page.$eval('input', input => {
|
|
input.focus();
|
|
input.selectionStart = 2;
|
|
input.selectionEnd = 4;
|
|
});
|
|
await page.type('input', 'world');
|
|
expect(await page.$eval('input', input => input.value)).toBe('heworldo');
|
|
});
|
|
|
|
it('should work with number input', async ({ page }) => {
|
|
await page.setContent(`<input type='number' value=2 />`);
|
|
await page.type('input', '13');
|
|
expect(await page.$eval('input', input => input.value)).toBe('132');
|
|
});
|