Disable the default implicit wait.
(self)
| 268 | |
| 269 | @contextmanager |
| 270 | def disable_implicit_wait(self): |
| 271 | """Disable the default implicit wait.""" |
| 272 | self.selenium.implicitly_wait(0) |
| 273 | try: |
| 274 | yield |
| 275 | finally: |
| 276 | self.selenium.implicitly_wait(self.implicit_wait) |
| 277 | |
| 278 | |
| 279 | def screenshot_cases(method_names): |
no outgoing calls