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

Method keyUp

javascript/selenium-webdriver/lib/input.js:785–787  ·  view source on GitHub ↗

* Inserts an action to release a single key. * * @param {(Key|string|number)} key the key to release. This key may be * specified as a Key value, a specific unicode code point, * or a string containing a single unicode code point. * @return {!Actions} a self reference.

(key)

Source from the content-addressed store, hash-verified

783 * @return {!Actions} a self reference.
784 */
785 keyUp(key) {
786 return this.insert(this.keyboard_, this.keyboard_.keyUp(key))
787 }
788
789 /**
790 * Inserts a sequence of actions to type the provided key sequence.

Callers 4

sendKeysMethod · 0.45
actions_test.jsFile · 0.45
input_test.jsFile · 0.45
input_test.jsFile · 0.45

Calls 1

insertMethod · 0.95

Tested by

no test coverage detected