(self)
| 14769 | self.switch_to_window(current_window) |
| 14770 | |
| 14771 | def __needs_minimum_wait(self): |
| 14772 | if ( |
| 14773 | self.page_load_strategy == "none" |
| 14774 | and getattr(settings, "SKIP_JS_WAITS", None) |
| 14775 | ): |
| 14776 | return True |
| 14777 | else: |
| 14778 | return False |
| 14779 | |
| 14780 | def __demo_mode_pause_if_active(self, tiny=False): |
| 14781 | if self.demo_mode: |
no outgoing calls
no test coverage detected