I have the following issue. When I start my selenium test, to get to the part where the actual test is performed, I need to start the browser, log in, do some other operations, and then it comes the part I want to test.
Isn't there a way to do the first part only once, leave the session and the browser open. And for a next test Run only continue this session, without starting up.
So basically I would have a test initializing, and leaving the session open. And other tests which use this initialized session, reuse the session every time.
I am using Java, and Selenium RC.
Thanks!