I am trying to run a selenium test case using PHPUnit. And the first thing I do is trying the login function, this works perfect but then I want to run a function to check i
To share browser sessions in Selenium2TestCase, you must set sessionStrategy => 'shared' in your initial browser setup:
Selenium2TestCase
sessionStrategy => 'shared'
public static $browsers = array( array( '... 'browserName' => 'iexplorer', 'sessionStrategy' => 'shared', ... ) );
The alternative (default) is 'isolated'.
'isolated'