MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / keyUp

Method keyUp

java/src/org/openqa/selenium/interactions/Actions.java:103–105  ·  view source on GitHub ↗

Performs a modifier key release. Releasing a non-depressed modifier key will yield undefined behaviour. @param key @return A self reference.

(CharSequence key)

Source from the content-addressed store, hash-verified

101 * @return A self reference.
102 */
103 public Actions keyUp(CharSequence key) {
104 return addKeyAction(key, codePoint -> tick(getActiveKeyboard().createKeyUp(codePoint)));
105 }
106
107 /**
108 * Performs a modifier key release after focusing on an element. Equivalent to:

Calls 5

addKeyActionMethod · 0.95
tickMethod · 0.95
getActiveKeyboardMethod · 0.95
focusInTicksMethod · 0.95
createKeyUpMethod · 0.80