(self)
| 250 | |
| 251 | @property |
| 252 | def next_page_request(self): |
| 253 | next_page_id = self.paginator.get_next_page_id(self.response) |
| 254 | if not next_page_id: |
| 255 | # No next page |
| 256 | return None |
| 257 | |
| 258 | next_request = self.response.request.copy() |
| 259 | self.paginator.set_next_page_param(next_request, next_page_id) |
| 260 | return next_request |
| 261 | |
| 262 | def __iter__(self): |
| 263 | """ |
nothing calls this directly
no test coverage detected