Practice free →
HomeSoftware TestingSoftware Testingtools_automation_cicd › Implicit wait in WebDriver applies to

Implicit wait in WebDriver applies to

AAll element lookups for a global duration
BOnly a single element find call
COnly page load completion events
DOnly JavaScript execution timeouts
Answer & Solution
Correct answer: A. All element lookups for a global duration
driver.implicitlyWait(N) sets a global polling timeout for every findElement / findElements call. Explicit wait (WebDriverWait) targets a specific condition; fluent wait adds polling intervals and exception ignoring.
Solve this in the app — Software Testing practice & 24k+ MCQs →
Related questions