Releases the depressed left mouse button, in the middle of the given element. This is equivalent to: Actions.moveToElement(onElement).release() Invoking this action without invoking #clickAndHold() first will result in undefined behaviour. @param target Element to release the mou
(WebElement target)
| 208 | * @return A self reference. |
| 209 | */ |
| 210 | public Actions release(WebElement target) { |
| 211 | return moveInTicks(target, 0, 0).tick(getActivePointer().createPointerUp(LEFT.asArg())); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * If the element is outside the viewport, scrolls the bottom of the element to the bottom of the |
nothing calls this directly
no test coverage detected