﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
24965	Make LiveServerTestCase.live_server_url accessible from class	Moritz Sichert	Moritz Sichert	"Consider following test:
{{{
class MySeleniumTest(LiveServerTestCase):
    @classmethod
    def setUpClass(cls):
        super(MySeleniumTest, cls).setUpClass()
        # initialize selenium driver
        cls.selenium = WebDriver()
        # initialize browser state, live_server_url is needed here
        cls.selenium.get(cls.live_server_url)
        # [...]
}}}

Right now this doesn't work, because `live_server_url` is a property even though it only consists of class attributes.

Since class properties are a bit more complicated I suggest adding a `get_live_server_url` classmethod and keeping the `live_server_url`.
An alternative is to deprecate `live_server_url` but I don't think that's really necessary."	Cleanup/optimization	closed	Testing framework	dev	Normal	fixed	selenium tests live server test case url		Accepted	1	0	0	0	0	0
