From #26
Include a special modifier for the screen-reader specific modifier keys.
This is not done yet. How do we want to support this? Should there be a special string for each vendor in place of the raw key string, e.g. "nvda", "macOS VoiceOver", etc?
{
"method": "interaction.pressKeys",
"params": {
"keys": ["nvda", "a"]
}
}
Or a boolean property in InteractionPressKeysParameters to indicate that the screen reader specific modifier keys should be pressed?
{
"method": "interaction.pressKeys",
"params": {
"keys": ["a"],
"vendorModifier": true
}
}
Originally posted by @zcorpan in #26 (comment)