2

Forgive me if this was asked before, but I could not find it.

How could I run my test suites in different browser's one after another. Meaning, run tests in chrome, close chrome, run tests in IE, close IE etc..

I am aware of multiCapabilities, but that seems to be for parallel only.

Thank-you

Thibs
  • 8,058
  • 13
  • 54
  • 85

1 Answers1

5

I think that the maxSessions option will fit your need.

Add this line in your Protractor config:

maxSessions: 1

See reference config and this question.

Community
  • 1
  • 1
glepretre
  • 8,154
  • 5
  • 43
  • 57