MCPcopy
hub / github.com/django/django / disable_implicit_wait

Method disable_implicit_wait

django/test/selenium.py:270–276  ·  view source on GitHub ↗

Disable the default implicit wait.

(self)

Source from the content-addressed store, hash-verified

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
279def screenshot_cases(method_names):

Calls

no outgoing calls