I have been developing JUnit tests using Selenium webdriver and I test them on BrowserStack.
It works when:
- I keep all my selenium scripts in one test method.
- I keep my scripts in different JUnit test methods, as they open their own sessions and run smoothly.
I now want each of my Test methods to use the same BrowserStack session (to reduce total run time). Is this possible? I have read somewhere about intern framework a little, but do we have any other simple way to achieve this?