Registry / testing / selenium-support

selenium-support

JSON →
library4.44.0javamavenunverified

Selenium Support provides helper classes for browser automation, including expected conditions and page object support.

<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> <version>4.44.0</version> </dependency>
INSTALL
IMPORT
SIG · SELENIUM-SUPPORT
S
selenium-support
testingjavav4.44.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

WebDriverWait
✓ org.openqa.selenium.support.ui.WebDriverWait

Wait up to 10 seconds for an element with id 'myElement' to appear.

import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.support.ui.WebDriverWait; import java.time.Duration; WebDriver driver = new ChromeDriver(); WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(10)); wait.until(d -> d.findElement(By.id("myElement"))); driver.quit();
Debug
Known issues
breakingSelenium 4.x changed WebDriverWait constructor to accept Duration instead of long seconds.
fix
Use Duration.ofSeconds(10) instead of just 10.
affects: >=4.0.0
Upgrade
Version history
4.44.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Resources
selenium-support — mvn dependency:get selenium-support · libregistry