Key.chord(var_args)code ยป
Simulate pressing many keys at once in a "chord". Takes a sequence of
webdriver.Key
s or strings, appends each of the values to a string,
and adds the chord termination key (webdriver.Key.NULL
) and returns
the resultant string.
Note: when the low-level webdriver key handlers see Keys.NULL, active
modifier keys (CTRL/ALT/SHIFT/etc) release via a keyup event.
Parameters
- var_args
...string
The key sequence to concatenate.
Returns
string
The null-terminated key sequence.