Skip to content

v3.2.0 — WaitEngine: attributeToBe, urlMatches, textMatches

Choose a tag to compare

@shossain786 shossain786 released this 18 Jul 17:19
· 43 commits to master since this release
3ce3a45

Added

  • Three new WaitEngine conditions, consistent with the existing waitFor* naming:
    • waitForAttribute(By, attribute, value) — waits for an exact attribute match (use the existing waitForAttributeContains for a substring match)
    • waitForUrlMatches(String regex) — waits for the current URL to match a regular expression (use the existing waitForUrlContains for a substring match)
    • waitForTextMatches(By, String regex) — waits for an element's visible text to match a regular expression
    • Purely additive to the @SeleniumBootApi surface — no breaking changes. (Closes #12)

Full Changelog: https://github.com/seleniumboot/selenium-boot/blob/master/CHANGELOG.md#v320--2026-07-18