-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
Expected behavior
During the data-driven, parallel test run order of the rows should be preserved in the reports.
Actual behavior
Please check the s.no in the screenshot
Steps to reproduce
Run this code:
Spec file:
# Spec header
tags: test
|S.No.|url |
|-----|-----------------------------|
|1 |https://docs.gauge.org |
|2 |https://www.google.com/ |
|3 |https://www.facebook.com/ |
|4 |https://docs.gauge.org/latest|
|5 |https://gauge.org/plugins/ |
## scenario header
* Naviagte to <url> url
step_implementation.js:
const puppeteer = require("puppeteer");
const assert = require("assert");
step("Naviagte to <url> url", async function(url) {
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
await page.goto(url);
if (url.includes("latest")) assert.fail("Failed step");
await browser.close();
});
Gauge version
Gauge version: 1.0.5
Commit Hash: 562f036
Plugins
-------
html-report (4.0.8)
js (2.3.5)
screenshot (0.0.1)
maxshifrin
Metadata
Metadata
Assignees
Labels
No labels
