2021-07-28 22:30:37 -07:00
|
|
|
/**
|
|
|
|
|
* Copyright Microsoft Corporation. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
import { Locator, Page } from '../../..';
|
2021-09-14 19:24:29 -07:00
|
|
|
import { constructURLBasedOnBaseURL, isString } from '../../utils/utils';
|
2021-07-28 22:30:37 -07:00
|
|
|
import type { Expect } from '../types';
|
|
|
|
|
import { toBeTruthy } from './toBeTruthy';
|
|
|
|
|
import { toEqual } from './toEqual';
|
2021-09-14 19:24:29 -07:00
|
|
|
import { normalizeWhiteSpace, toMatchText } from './toMatchText';
|
2021-07-28 22:30:37 -07:00
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toBeChecked(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toBeTruthy.call(this, 'toBeChecked', locator, 'Locator', async (isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.be.checked', { isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toBeDisabled(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toBeTruthy.call(this, 'toBeDisabled', locator, 'Locator', async (isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.be.disabled', { isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toBeEditable(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toBeTruthy.call(this, 'toBeEditable', locator, 'Locator', async (isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.be.editable', { isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toBeEmpty(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toBeTruthy.call(this, 'toBeEmpty', locator, 'Locator', async (isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.be.empty', { isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toBeEnabled(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toBeTruthy.call(this, 'toBeEnabled', locator, 'Locator', async (isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.be.enabled', { isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toBeFocused(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toBeTruthy.call(this, 'toBeFocused', locator, 'Locator', async (isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.be.focused', { isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toBeHidden(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toBeTruthy.call(this, 'toBeHidden', locator, 'Locator', async (isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.be.hidden', { isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toBeVisible(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toBeTruthy.call(this, 'toBeVisible', locator, 'Locator', async (isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.be.visible', { isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toContainText(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
expected: string,
|
|
|
|
|
options?: { timeout?: number, useInnerText?: boolean },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toMatchText.call(this, 'toContainText', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.text', { expected, isNot, timeout });
|
|
|
|
|
}, expected, { ...options, matchSubstring: true, normalizeWhiteSpace: true, useInnerText: options?.useInnerText });
|
2021-07-28 22:30:37 -07:00
|
|
|
}
|
|
|
|
|
|
2021-08-06 16:58:42 -07:00
|
|
|
export function toHaveAttribute(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
name: string,
|
|
|
|
|
expected: string | RegExp,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toMatchText.call(this, 'toHaveAttribute', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.attribute', { expected, isNot, timeout, data: { name } });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, expected, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toHaveClass(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
2021-09-02 15:48:04 -07:00
|
|
|
expected: string | RegExp | (string | RegExp)[],
|
2021-07-28 22:30:37 -07:00
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-07-29 07:33:19 -07:00
|
|
|
if (Array.isArray(expected)) {
|
|
|
|
|
return toEqual.call(this, 'toHaveClass', locator, 'Locator', async () => {
|
|
|
|
|
return await locator.evaluateAll(ee => ee.map(e => e.className));
|
|
|
|
|
}, expected, options);
|
|
|
|
|
} else {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toMatchText.call(this, 'toHaveClass', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.class', { expected, isNot, timeout });
|
2021-07-29 07:33:19 -07:00
|
|
|
}, expected, options);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function toHaveCount(
|
|
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
expected: number,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
|
|
|
|
return toEqual.call(this, 'toHaveCount', locator, 'Locator', async timeout => {
|
|
|
|
|
return await locator.count();
|
|
|
|
|
}, expected, options);
|
2021-07-28 22:30:37 -07:00
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toHaveCSS(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
name: string,
|
|
|
|
|
expected: string | RegExp,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toMatchText.call(this, 'toHaveCSS', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.css', { expected, isNot, timeout, data: { name } });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, expected, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toHaveId(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
expected: string | RegExp,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toMatchText.call(this, 'toHaveId', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.id', { expected, isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, expected, options);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-06 16:58:42 -07:00
|
|
|
export function toHaveJSProperty(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
2021-07-29 07:33:19 -07:00
|
|
|
name: string,
|
2021-08-06 14:02:41 -07:00
|
|
|
expected: any,
|
2021-07-28 22:30:37 -07:00
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-08-06 16:58:42 -07:00
|
|
|
return toEqual.call(this, 'toHaveJSProperty', locator, 'Locator', async timeout => {
|
2021-07-29 07:33:19 -07:00
|
|
|
return await locator.evaluate((element, name) => (element as any)[name], name, { timeout });
|
|
|
|
|
}, expected, options);
|
2021-07-28 22:30:37 -07:00
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toHaveText(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
2021-09-02 15:48:04 -07:00
|
|
|
expected: string | RegExp | (string | RegExp)[],
|
2021-09-14 19:24:29 -07:00
|
|
|
options: { timeout?: number, useInnerText?: boolean } = {},
|
2021-07-29 07:33:19 -07:00
|
|
|
) {
|
|
|
|
|
if (Array.isArray(expected)) {
|
2021-09-14 19:24:29 -07:00
|
|
|
const expectedArray = expected.map(e => isString(e) ? normalizeWhiteSpace(e) : e);
|
2021-07-29 07:33:19 -07:00
|
|
|
return toEqual.call(this, 'toHaveText', locator, 'Locator', async () => {
|
2021-09-14 19:24:29 -07:00
|
|
|
const texts = await locator.evaluateAll((ee, useInnerText) => {
|
2021-07-29 07:33:19 -07:00
|
|
|
return ee.map(e => useInnerText ? (e as HTMLElement).innerText : e.textContent || '');
|
|
|
|
|
}, options?.useInnerText);
|
2021-09-14 19:24:29 -07:00
|
|
|
// Normalize those values that have string expectations.
|
|
|
|
|
return texts.map((s, index) => isString(expectedArray[index]) ? normalizeWhiteSpace(s) : s);
|
|
|
|
|
}, expectedArray, options);
|
2021-07-29 07:33:19 -07:00
|
|
|
} else {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toMatchText.call(this, 'toHaveText', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.text', { expected, isNot, timeout });
|
|
|
|
|
}, expected, { ...options, normalizeWhiteSpace: true, useInnerText: options?.useInnerText });
|
2021-07-29 07:33:19 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function toHaveTitle(
|
|
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
page: Page,
|
|
|
|
|
expected: string | RegExp,
|
2021-09-14 19:24:29 -07:00
|
|
|
options: { timeout?: number } = {},
|
2021-07-28 22:30:37 -07:00
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
const locator = page.locator(':root');
|
|
|
|
|
return toMatchText.call(this, 'toHaveTitle', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.title', { expected, isNot, timeout });
|
2021-09-14 19:24:29 -07:00
|
|
|
}, expected, { ...options, normalizeWhiteSpace: true });
|
2021-07-28 22:30:37 -07:00
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toHaveURL(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
2021-07-29 07:33:19 -07:00
|
|
|
page: Page,
|
2021-07-28 22:30:37 -07:00
|
|
|
expected: string | RegExp,
|
2021-07-29 07:33:19 -07:00
|
|
|
options?: { timeout?: number },
|
2021-07-28 22:30:37 -07:00
|
|
|
) {
|
2021-09-21 21:41:24 +02:00
|
|
|
const baseURL = (page.context() as any)._options.baseURL;
|
2021-09-23 16:46:46 -07:00
|
|
|
expected = typeof expected === 'string' ? constructURLBasedOnBaseURL(baseURL, expected) : expected;
|
|
|
|
|
const locator = page.locator(':root');
|
|
|
|
|
return toMatchText.call(this, 'toHaveURL', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.url', { expected, isNot, timeout });
|
|
|
|
|
}, expected, options);
|
2021-07-28 22:30:37 -07:00
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:33:19 -07:00
|
|
|
export function toHaveValue(
|
2021-07-28 22:30:37 -07:00
|
|
|
this: ReturnType<Expect['getState']>,
|
|
|
|
|
locator: Locator,
|
|
|
|
|
expected: string | RegExp,
|
|
|
|
|
options?: { timeout?: number },
|
|
|
|
|
) {
|
2021-09-23 16:46:46 -07:00
|
|
|
return toMatchText.call(this, 'toHaveValue', locator, 'Locator', async (expected, isNot, timeout) => {
|
|
|
|
|
return await (locator as any)._expect('to.have.value', { expected, isNot, timeout });
|
2021-07-28 22:30:37 -07:00
|
|
|
}, expected, options);
|
|
|
|
|
}
|