Re: client side tests

2013-07-15 Thread Jonathan Baker
Also, here is a detailed (and recent) intro on integrating LiveServerTestCase into your Django project: http://lincolnloop.com/blog/2012/nov/2/introduction-django-selenium-testing/ On Mon, Jul 15, 2013 at 8:43 AM, Larry Martell wrote: > On Mon, Jul 15, 2013 at 6:10 AM, Luiz A. Menezes Filho > w

Re: client side tests

2013-07-15 Thread Larry Martell
On Mon, Jul 15, 2013 at 6:10 AM, Luiz A. Menezes Filho wrote: > Complementing Jonathan's response: you can use django's > LiveServerTestCase[1] instead of the usual TestCase. To access your site as > a browser would do there is selenium [2]. > > Att, > > [1] > https://docs.djangoproject.com/en/dev

Re: client side tests

2013-07-15 Thread bobhaugen
Any current faves for client-side testing that do not require Java? > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.

Re: client side tests

2013-07-15 Thread Luiz A. Menezes Filho
Complementing Jonathan's response: you can use django's LiveServerTestCase[1] instead of the usual TestCase. To access your site as a browser would do there is selenium [2]. Att, [1] https://docs.djangoproject.com/en/dev/topics/testing/overview/#django.test.LiveServerTestCase [2] http://selenium-

Re: client side tests

2013-07-15 Thread Jonathan D. Baker
Check out functional testing with selenium. Sent from my iPhone On Jul 15, 2013, at 4:00 AM, Larry Martell wrote: > There's no way, using the django unit tests, to effect something > client side, is there? > > For example, in one of my django apps the user can filter the data on > the client s