In my experience, I have used refactoring at two level of project development.
First, any time I am working with existing code, I try to find areas to not only add the new required functionality, but to add it in such a way that enhances the current design. To give a more specific example, instead of copying code, or just adding some new methods, see where common functionality can be factored out into a separate class or method and then used by both the new and legacy code. Of course, any existing tests should still work and could possibly have to be modified.
The other opportunity for refactoring is at each "break" in development which typically happens at milestones. The processes with which I have been involved try to plan some time for reflection at these point before plowing through the next development cycle. This is when you get to look back and see how the code can be improved to handle the upcoming goals.