Kirk Strobeck
Kirk Strobeck

Reputation: 18669

Consecutive browser tests, not concurrent

I am using multiCapabilities to setup multiple browsers. Is there a way to make them consecutive and not concurrent?

Upvotes: 1

Views: 41

Answers (1)

alecxe
alecxe

Reputation: 474271

Since you are allowed to use only 2 testing sessions on browserstack, configure maxSessions setting:

// Maximum number of total browser sessions to run. Tests are queued in
// sequence if number of browser sessions is limited by this parameter.
// Use a number less than 1 to denote unlimited. Default is unlimited.
maxSessions: 2,

Upvotes: 1

Related Questions