Hi
We have automated UI tests running via teamcity and as the number of tests grows they are running ever slower. That also create a problem that double clicks are slow they are in fact treated as two single clicks.There may be other causes for this behaviour which is another story altogether.
I have been looking at the ways to improve the performance, one place I have been looking at is a hook class that glues Specflow and Coypu together. We are using BeforeScenario event to create new browser session. That means that for each scenario there is new browser/browser session created. It seems to me that most efficient way would be to run all the tests in a single browser session.
I have looked at the various event handlers and experimented but I have not managed to come up with a good solution. Is there any way to run the tests in a single browser session?
Your input will be greatly appreciated.