This has been asked a million times on the web, but there's no clear cut answer. I tried "-browserSessionReuse" today without any luck; my tests keep spawning new browser windows.
X:\QA\Automation\SELENIUM_SERVER>java -jar selenium-server-standalone-2.8.0.jar -log "log.txt" -browserSessionReuse -forcedBrowserMode "*googlechrome"
<snip>
13:42:25.923 INFO - Will recycle browser sessions when possible.
Maybe it's how I'm starting Selenium in my .py files?
sel = selenium('localhost', 4444, "*chrome", 'http://server/')
sel.start()
...perhaps I'm doing too many server starts?
Thanks.
