Is there a way to merge the tagging of the test cases in allure with palywright #2628
Answered
by
baev
sourav-das-exavalu
asked this question in
Questions & Support
-
Hi , test.describe('A group of tests', { tag: ['@<component>'] }, () => {
let signinPage: SigninPage
test(
'Confirm existing account login works',
**{ tag: ['@<JIRA>', '@<ExecutionType>', '@<TestType>'] }**,
async ({ page }, workerInfo) => {
**await allure.tags(workerInfo.tags.join(','))**
signinPage = new SigninPage(page)
signinPage.goto()
await signinPage.handleSignIn(existingCollectorsAccount)
await signinPage.confirmTitle('My Collection')
}
)
}) |
Beta Was this translation helpful? Give feedback.
Answered by
baev
Jul 5, 2024
Replies: 1 comment
-
Starting with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
baev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Starting with
3.0.0-beta.5
Playwright tags are automatically added to the report. Tags from describes are merged with tags specified for tests.