Hi, I'm using PHPUnit's Selenium extension to do web testing. I'm finding it very slow, taking seconds for a single test method. Part of the issue appears to be that its starting a new Selenium session between each test method (getNewBrowserSession), as part of runTest(). This is expensive. I'm ok with running a class or even a whole suite's worth of test methods in a single selenium session.
Can this be done? Are there other tips for speeding up PHPUnit + Selenium?
Thanks.