I would like to run separate protractor specs without closing the browser in between.
Something like:
- Open the browser and go to the URL
- then, run "protractor conf.js --specs=spec1.js"
- then, do some actions on the SUT, typically do some actions on our simulator (so, non protractor actions)
- then, run "protractor conf.js --specs=spec2.js"
- and finally close the browser and shutdown the webdriver.
The goal is to keep the context between the protractor specs execution.
Is it possible?
Correction and Additional information:
My need is to keep the browser opened between two separate test suites (in separate files) and not between two tests. I'm using IE11 alongside selenium standalone server.
Thank you.