зеркало из
1
0
Форкнуть 0

Added deprecation note for dataUIId selector util function for Playwright tests

This commit is contained in:
vhuseinova-msft 2024-09-13 10:09:58 -07:00
Родитель 73a7a8c338
Коммит 7d8b59bf2b
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,10 @@ export function perStepLocalTimeout(): number {
return PER_STEP_TIMEOUT_MS;
}
/** Selector string to get element by data-ui-id property */
/**
* Selector string to get element by data-ui-id property
* @deprecated Use native Playwright functions to get locators or use `dataTestId` instead.
*/
export const dataUiId = (id: string): string => `[data-ui-id="${id}"]`;
/** Selector string to get element by data-testid property */