I am writing selenium scripts on a complex web based application.
To use a useraccount I need to register first using one URL and then approve the account in the admin console on another URL.
The problem is that there is another baseURL for registration and admin console and I need that in one unittest.
But when I use setBaseUrl in my tests it's ignored and the old baseURL is used. I even called start() after that, but no change...
Is there a trick that I am not aware of? I'm playing around and debug for quite some time on this problem, but the decoupled (test <-> RCServer) selenium tests are not making it easier to step through... ;-)