testcafe-browser-provider-browserstack
testcafe-browser-provider-browserstack copied to clipboard
Cannot establish one or more browser connections when using concurrency mode
When concurrent mode is used with more than 5 threads, TestCafe hangs and then throws an error:

Steps to reproduce:
- Create a simple fixture with a few tests, for example:
fixture `New Fixture`
.page `about:blank`;
for (let i = 0; i < 6; i++) {
test(`test ${i}`, async t => {
await t.expect(true).ok();
});
}
- Run using concurrent mode in 6 threads:
testcafe browserstack:chrome -c 6 ./test.jsYou will get an error. - For comparison, run the same fixture in local chrome:
testcafe chrome -c 6 ./test.jsThis should be successful.