in reply to Re: Selenium RC - How to reuse bowser session?
in thread Selenium RC - How to reuse bowser session?
in the code in message 5. Unless I'm misunderstanding what is going on - (I dunno much about Java)public void startBrowser(String pstrBaseUrl, String pstrTimeou +tInMilliseconds) throws Exception { browser = new DefaultSelenium("localhost", 4444, "*chrome", ps +trBaseUrl); browser.start(); browser.setTimeout(pstrTimeoutInMilliseconds); }
This one is better:
http://groups.google.com/group/selenium-users/browse_frm/thread/403b2b93e6e0e2b2/e16702ec4686cd1f?lnk=gst&q=reuse+browser+session+id#e16702ec4686cd1fRemoteControlConfiguration rcc = new RemoteControlConfiguration(); rcc.reuseBrowserSessions(); SeleniumServer ss = new SeleniumServer(rcc); ss.start();
What is the RemoteControlConfiguration()? or is that a home made function somewhere
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Selenium RC - How to reuse bowser session?
by Anonymous Monk on Mar 21, 2010 at 17:00 UTC | |
by zerocred (Beadle) on Mar 21, 2010 at 18:05 UTC | |
by zerocred (Beadle) on Mar 22, 2010 at 18:41 UTC | |
|
Re^3: Selenium RC - How to reuse bowser session?
by zerocred (Beadle) on Mar 21, 2010 at 16:49 UTC |