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

Method sequence_

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

* @param {!Device} device * @return {!Array<!Action>} * @private

(device)

Source from the content-addressed store, hash-verified

632 * @private
633 */
634 sequence_(device) {
635 let sequence = this.sequences_.get(device)
636 if (!sequence) {
637 sequence = []
638 this.sequences_.set(device, sequence)
639 }
640 return sequence
641 }
642
643 /**
644 * Appends `actions` to the end of the current sequence for the given

Callers 3

insertMethod · 0.95
synchronizeMethod · 0.95
pauseMethod · 0.95

Calls 2

getMethod · 0.65
setMethod · 0.65

Tested by

no test coverage detected