I'm running some end-to-end tests on my website. I want to do these tests in both Chrome and Firefox, so I've configured the configuration file with multicapabilities: [{browserName: 'chrome'}, {browserName: 'firefox'}]
. But when running the tests the two browser instances interfere with each other because sometimes Chrome does an action with will fail the Firefox tests.
My question: Is it possible to not run the two browser instances in parallel? Instead I first want Chrome to do the tests, then when Chrome is finished, Firefox should start. Is this possible?