Hi,

I'd like to ask how do you integrate your webtests with django suite,
so it'll be run on manage.py test.

I've looked for resources support for unittest framework, but I have
not found any way how to skip test gracefully (I guess it's patched
for python 2.6), but for now I'd then prefer starting selenium server
manually from python by creating SeleniumTestCase. However, I have
problems to determine when is selenium server really started and

        self.p = Popen(['java', '-jar', config.get('selenium',
'path'), '-port', str(config.get('selenium', 'port'))], \
                       stdout=PIPE, stdin=PIPE, stderr=PIPE)
        # wait until server start
        #FIXME find a way to resolve that server is started
        sleep(2)

is just ugly.


How do You integrate Your tests with Selenium?

Thank You,

Almad


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to