Blocks until the request completes, and returns the response body.
(self)
| 173 | return self.request |
| 174 | |
| 175 | def response_text(self): |
| 176 | """Blocks until the request completes, and returns the response body.""" |
| 177 | return self.wait_for_response().text |
| 178 | |
| 179 | |
| 180 | class WebServer(object): |