(self, url)
| 528 | driver_instances.append(self) |
| 529 | |
| 530 | def get(self, url): |
| 531 | # Force a failure on the first attempt then succeed on subsequent attempts. |
| 532 | if attempt_counter[0] < 1: |
| 533 | attempt_counter[0] += 1 |
| 534 | raise aiohttp.ClientError("Forced failure") |
| 535 | # If no failure, simply pass. |
| 536 | |
| 537 | @property |
| 538 | def page_source(self): |
no outgoing calls
no test coverage detected