[Django]-Testing Django project, how can I avoid Errno 10054?

1👍

Django Debug Toolbar generates tons of these errors. If you have it installed please try again without it

0👍

This happens when the client closes the connection before the server finished sending the data. If it only happens sometimes and is not a persistent problem ignore it.

Complete answer here → Django development server broken pipe error

0👍

add refresh before quit,see here

    self.browser.refresh()
    self.browser.quit()

Leave a comment