Add step in "playwright-qase-reporter"
complete
Александр Алексеев
Hi!
Currently, I try playwright-qase-reporter and it's awesome, thanks for that!
But, do you have plan to add "step" from playwright report?
All cases that created by "playwright-qase-reporter" in QASE project are empty (only have title from test case)
testResult object in https://github.com/qase-tms/qase-javascript/blob/master/qase-playwright/src/index.ts
should have "steps"
Manjunatha Reddy
complete
Manjunatha Reddy
Hello there!
Our latest version 2.x of playwright-qase-reporter now supports test case steps.
You can find the latest version here: https://github.com/qase-tms/qase-javascript/tree/main/qase-playwright
This new version includes some changes. The options and environment variable names have been updated to standardize them across all our reporters.
You can find all the configuration options here: Qase JavaScript Commons on GitHub.
Here’s an example test with steps for you to try:
test('Test with steps', async ({ }) => {
await test.step('Step 1 - Passed', async () => {
expect(true).toBe(true);
});
await test.step('Step 2 - Passed', async () => {
expect(true).toBe(true);
});
await test.step('Step 3 - Failed', async () => {
expect(true).toBe(false);
});
});
If you have any questions, please feel free to reach out to us via support chat.
I
Ilia K
Manjunatha Reddy Perfect!! Thanks
I
Ilia K
+
Joshua Claro
+
Константин
+