diff --git a/docs/api/java/org/openqa/selenium/WebElement.html b/docs/api/java/org/openqa/selenium/WebElement.html index 25dc4a3..30e3a11 100644 --- a/docs/api/java/org/openqa/selenium/WebElement.html +++ b/docs/api/java/org/openqa/selenium/WebElement.html @@ -235,12 +235,13 @@

Interface WebElement

  • click

    void click()
    -
    Click this element. If this causes a new page to load, this method will attempt to block until - the page has loaded. At this point, you should discard all references to this element and any - further operations performed on this element will throw a StaleElementReferenceException unless - you know the element and the page will still be present. If click() causes a new page to be - loaded via an event or is done by sending a native event then the method will *not* wait for - it to be loaded and the caller should verify that a new page has been loaded. +
    Click this element. If this causes a new page to load, you + should discard all references to this element and any further operations + performed on this element will throw a StaleElementReferenceException +

    + Note that if click() is done by sending a native event (which is the default + on most browsers/platforms) then the method will *not* wait for the next page + to load and the caller should verify that themselves.

    There are some preconditions for an element to be clicked. The element must be visible and it must have a height and width greater then 0.