(self, container_selector=None, container_dom_id=None, after_exit=None)
| 86 | get_current_session() |
| 87 | |
| 88 | def enable_context_manager(self, container_selector=None, container_dom_id=None, after_exit=None): |
| 89 | self.enabled_context_manager = True |
| 90 | self.container_selector = container_selector |
| 91 | self.container_dom_id = container_dom_id |
| 92 | self.after_exit = after_exit |
| 93 | return self |
| 94 | |
| 95 | def __enter__(self): |
| 96 | if not self.enabled_context_manager: |
no outgoing calls
no test coverage detected