Description Usage Format Examples
Special keys, so that we can refer to them with an easier syntax
1 |
An object of class list
of length 51.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run:
el$sendKeys("xyz")
el$sendKeys("x", "y", "z")
el$sendKeys("username", key$enter, "password", key$enter)
## Sending CTRL+A
el$sendKeys(key$control, "a")
## Note that modifier keys (control, alt, shift, meta) are sticky,
## they remain in effect in the rest of the sendKeys() call. E.g.
## this sends CTRL+X and CTRL+S
el$sendKeys(key$control, "x", "s")
## You will need multiple calls to release control and send CTRL+X S
el$sendKeys(key$control, "x")
el$sendKeys("s")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.