I have the following problem. When I start the selenium test, to get to the part where the actual test is performed, I need to launch the browser, log in, perform some other operations, and then go to the part that I want to check.
Is there a way to do the first part only once, leave the session and browser open. And for the next Run test, just continue this session without starting it.
So basically I would have to initialize the test and leave the session open. And other tests that use this initialized session reuse the session each time.
I am using Java and Selenium RC.
Thank!
source
share