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

Method chord

java/src/org/openqa/selenium/Keys.java:182–184  ·  view source on GitHub ↗

Simulate pressing many keys at once in a "chord". Takes a sequence of Keys.XXXX or strings; appends each to a string, adds the chord termination key (Keys.NULL), and returns it. Note: Keys.NULL signals release of modifier keys like CTRL/ALT/SHIFT via keyup events. @param value characters to sen

(CharSequence... value)

Source from the content-addressed store, hash-verified

180 * @return String representation of the char sequence
181 */
182 public static String chord(CharSequence... value) {
183 return chord(List.of(value));
184 }
185
186 /**
187 * Overload of {@link #chord(CharSequence...)} that accepts an iterable.

Callers 1

buildChordMethod · 0.80

Calls 3

toStringMethod · 0.65
ofMethod · 0.45
appendMethod · 0.45

Tested by 1

buildChordMethod · 0.64