Can I run my test on multiple OS/browsers using HyperExecute parallely?
Hi Miro,
Yes, you can use the matrix mode option in the YAML configuration to easily run your tests on multiple OS/Browser combination .
HyperExecute will generate permutations & combinations using the supplied key:value pair and launch a virtual machine for each combination.
runson: win
matrix:
  //Browser version(s) separated by Comma
  version: ["latest"]
 //Browser name separated by Comma
  browser: ["Chrome", "Firefox"]
 //Test Files separated by Comma
  files: ["@File1","@File2"]