I'm automating some test cases for a web app using selenium-webdriver and jasmine in protractor. I want each feature to run in a particular order and using the same browser window. For example:
- open and login the webapp
- Go to some page within the app
- Create a new item in this specific page
At this moment I would like to keep the browser aside, and do some manual actions outside the browser. After some actions taken I would like to go back to the browser that is waiting after step 3, and test whether the app behaved as expected for all the other actions I've been doing.
All the relevant information I could get for my scenario is in the following question: How to use same browser window for automated test using selenium-webdriver (ruby)? But it was all Ruby(which I don't know how to refer, or how to manipulate it for my needs).