Playwright에서 보고서를 보기 쉽게 allure-playwright 가져오기
▮Playwright
E2E의 테스트 프레임워크입니다.
allure-playwright
의 규격은 아래를 참조한다.가설 조건
다음을 참조하여 Playwright Test for VScode 가져오기
컨디션
▮ Bofre After
Before
After
!
다음은 VS코드가 되는 작업입니다.
▮1. allure-playwright 설치
조작하다
npm i -D allure-playwright
확인
PS C:\Playwright_sample> npm i -D allure-playwright
npm WARN Playwright_sample@1.0.0 No description
npm WARN Playwright_sample@1.0.0 No repository field.
+ allure-playwright@2.0.0-beta.16
added 5 packages from 3 contributors and audited 195 packages in 18.499s
18 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
PS C:\Playwright_sample>
2.allure-playwright로 테스트
조작하다
npx playwright test --reporter=line,allure-playwright
확인
PS C:\Playwright_sample> npx playwright test --reporter=line,allure-playwright
Running 25 tests using 1 worker
Slow test file: [chromium] › example.spec.ts (1m)
Consider splitting slow test files to speed up parallel execution
25 passed (1m)
PS C:\Playwright_sample>
allure-results
디렉토리에서 생성되었음을 확인합니다.3. allure-commandline을 설치합니다.
조작하다
npm i -D allure-commandline
확인
PS C:\Playwright_sample> npm i -D allure-commandline
npm WARN Playwright_sample@1.0.0 No description
npm WARN Playwright_sample@1.0.0 No repository field.
+ allure-commandline@2.17.2
added 1 package and audited 196 packages in 10.294s
18 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
PS C:\Playwright_sample>
4.allure-results에 따라 테스트 보고서 작성
조작하다
npx allure generate ./allure-results --clean
!내 환경이 필요하다
npx
.확인
PS C:\Playwright_sample> npx allure generate ./allure-results --clean
Report successfully generated to allure-report
PS C:\Playwright_sample>
allure-reports
디렉토리 생성을 확인합니다.5. allure 보고 서버를 시작합니다.
조작하다
npx allure open ./allure-report
!내 환경이 필요하다
npx
.확인
FEATURES BY STORIES
의 Show all
를 클릭합니다. 이번 변경된 문서 구성
allure-report
allure-results
フォルダー パスの一覧: ボリューム Windows
ボリューム シリアル番号は 2602-33EF です
C:.
│ .gitignore
│ package-lock.json
│ package.json
│ playwright.config.ts
│
├─allure-report
│ ...
│
├─allure-results
│ ...
├─node_modules
│ ...
├─playwright-report
│ index.html
│
└─tests
example.spec.ts
Reference
이 문제에 관하여(Playwright에서 보고서를 보기 쉽게 allure-playwright 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/reflex4qa/articles/01029546ab6e0e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)