actions_press | R Documentation |
Key actions to be passed into actions_stream()
. actions_press()
represents pressing a key on the keyboard, while actions_release()
represents releasing a key.
actions_press(key)
actions_release(key)
key |
The key to press: a string consisting of a single character. Use
the keys object to use special keys (e.g. |
A selenium_action
object.
actions_stream(
actions_press("a"),
actions_release("a"),
actions_press(keys$enter),
actions_release(keys$enter)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.