email2vimalraj / CucumberExtentReporter

A plugin to generate the cucumber jvm custom html report using ExtentsReport
http://www.vimalselvam.com/cucumber-extent-reporter/
MIT License
58 stars 74 forks source link

Is this report supports Parallel execution using Selenium Grid #102

Open ssharmaexp opened 5 years ago

ssharmaexp commented 5 years ago

I've to run my tests/classes in parallel using selenium Grid. For example if I have two classes to be run in parallel, as listed in below TestNG xml.

<test name=" Grid Regression Test" parallel="classes" thread-count="2"> <classes> <class name="cukesRunnerClasses.CucumberRunnerClassAU"/> <class name="cukesRunnerClasses.CucumberRunnerClassNZ"/> </classes> </test> I'm running one node on localHost and another on a different VM. It will be really help full if any one can clarify if Consolidated report will be generated with Parallel run with this report ?