반응형 playwright #playwrightassertion #automationassertion1 Playwright Assertion 파해치기 - Typescript Playwright에서 TypeScript를 사용할 때, Playwright의 내장 expect 라이브러리가 제공하는 다양한 assertion이 있습니다 기본 assertion기본 값이나 조건을 확인 import { expect } from '@playwright/test';// 기본 값에 대한 어설션expect(5).toBe(5);expect('Hello').toEqual('Hello');expect(true).toBeTruthy();expect(null).toBeNull();expect([1, 2, 3]).toContain(2); 페이지 및 로케이터 assertionPlaywright는 웹 요소에 대한 특화 (ex. 페이지내용, 가시성, 요소속성)import { test, expect } from .. 2024. 11. 28. 이전 1 다음 반응형