Testing with LiveServerTestCase and Selenium

2012-06-28 Thread Paul Childs
Hello, I'm using Django 1.4 and was really excited to learn about the new testing features. I am totally new to this. I seem to have hit a bump in the road. If I overcome this I'm hopeful it will be smooth sailing and I will experience some great testing goodness. I've been mucking around with th

Re: Testing with LiveServerTestCase and Selenium

2012-06-30 Thread Rafael Durán Castañeda
El 28/06/12 15:45, Paul Childs escribió: Hello, I'm using Django 1.4 and was really excited to learn about the new testing features. I am totally new to this. I seem to have hit a bump in the road. If I overcome this I'm hopeful it will be smooth sailing and I will experience some great testing

Re: Testing with LiveServerTestCase and Selenium

2012-07-04 Thread Paul Childs
I thought it might be a good idea to remove Django testing from the equation by opening up an IPython session and executing the following: from selenium import webdriver browser = webdriver.Firefox() browser.get("http://www.microsoft.com/";) browser.title '' # empty string The the same thing