Skip to main content

Keyboard Shortcuts for VoiceOver and TalkBack

The platform supports gesture-based operations using Screen Reader software on iOS (VoiceOver) and Android (TalkBack).

Performing gestures typically requires specific touch interactions. Since the mobile devices are remotely hosted and accessed through a browser interface, we’ve introduced keyboard shortcuts that replicate actual gestures, making navigation more accessible.

info

The keyboard shortcut examples below are based on a Mac keyboard. If you’re using a Windows keyboard, replace "Option" with "Alt" and "Command" with the "Windows" key.

iOS VoiceOver

Activate

DescriptionVoiceOver GestureKeyboard Shortcut
Tap objectDouble-tapControl + Option + Space

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL + Keys.ALT + " ");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", " ");

Special

DescriptionVoiceOver GestureKeyboard Shortcut
Invoke special actionTwo-finger double-tapControl + Option + Hyphen

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL+ Keys.ALT + "-");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "-");

Back/Close

DescriptionVoiceOver GestureKeyboard Shortcut
Back, cancel, or closeTwo-finger swipe back-and-forthEsc

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ESC);

SeeTest (Legacy)

client.sendKeysWithBT("{ESC}");

Item Chooser

DescriptionVoiceOver GestureKeyboard Shortcut
Open Item ChooserTwo-finger triple tapControl + Option + I

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL+ Keys.ALT + "I");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "I");

Read First

DescriptionVoiceOver GestureKeyboard Shortcut
Read all from the first itemTwo-finger swipe upControl + Option + B

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL+ Keys.ALT + "B");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "B");

Read Selected

DescriptionVoiceOver GestureKeyboard Shortcut
Read from the selected itemTwo-finger swipe downControl + Option + A

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL+ Keys.ALT + "A");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "A");

Pause Speech

info

Not Supported

DescriptionVoiceOver GestureKeyboard Shortcut
Pause speechThree-finger triple tapControl

Speech On/Off

DescriptionVoiceOver GestureKeyboard Shortcut
Toggle speech on or offThree-finger double-tapControl + Option + S

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL+ Keys.ALT + "S");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "S");

Previous

DescriptionVoiceOver GestureKeyboard Shortcut
Move to the previous itemSwipe leftLeftArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ARROW_LEFT);

SeeTest (Legacy)

client.sendKeysWithBT("{LEFT}");

Next

DescriptionVoiceOver GestureKeyboard Shortcut
Move to the next itemSwipe rightRightArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ARROW_RIGHT);

SeeTest (Legacy)

client.sendKeysWithBT("{RIGHT}");

Curtain On/Off

DescriptionVoiceOver GestureKeyboard Shortcut
Toggle Screen Curtain On/OffThree-finger triple tapControl + Option + F11

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL + Keys.ALT + Keys.F11);

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "{F11}");

Home

DescriptionVoiceOver GestureKeyboard Shortcut
Go to Home screenDouble-tap with one finger at the bottom of the screenControl + Option + H

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL + Keys.ALT + "H");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "H");

Page Left

DescriptionVoiceOver GestureKeyboard Shortcut
Scroll left one pageThree-finger swipe leftOption + Left Arrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ARROW_LEFT);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{LEFT}");
DescriptionVoiceOver GestureKeyboard Shortcut
Scroll right one pageThree-finger swipe rightOption + RightArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ARROW_RIGHT);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{RIGHT}");

Page Down

DescriptionVoiceOver GestureKeyboard Shortcut
Scroll down one pageThree-finger swipe upOption + DownArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ARROW_DOWN);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{DOWN}");

Page Up

DescriptionVoiceOver GestureKeyboard Shortcut
Scroll up one pageThree-finger swipe downOption + UpArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ARROW_UP);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{UP}");

Cut

DescriptionVoiceOver GestureKeyboard Shortcut
Cut selected textSelect Copy pop-up menu itemCommand + X

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.META + "X");

SeeTest (Legacy)

client.sendKeysWithBT("META", "X");

Copy

DescriptionVoiceOver GestureKeyboard Shortcut
Copy selected textSelect Copy pop-up menu itemCommand + C

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.META + "C");

SeeTest (Legacy)

client.sendKeysWithBT("META", "C");

Paste

DescriptionVoiceOver GestureKeyboard Shortcut
Paste copied textChoose Paste pop-up menu itemCommand + V

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.META + "V");

SeeTest (Legacy)

client.sendKeysWithBT("META", "V");

Select All

DescriptionVoiceOver GestureKeyboard Shortcut
Select all textN/ACommand + A

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.META + "A");

SeeTest (Legacy)

client.sendKeysWithBT("META", "A");

Rotor Previous

DescriptionVoiceOver GestureKeyboard Shortcut
Move to the previous rotor settingTwo-finger twist leftCommand + Control + Option + LeftArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL + Keys.ALT + Keys.META + Keys.ARROW_LEFT);

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT+META", "{LEFT}");

Rotor Next

DescriptionVoiceOver GestureKeyboard Shortcut
Move to the next rotor settingTwo-finger twist rightCommand + Control + Option + RightArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL + Keys.ALT + Keys.META + Keys.ARROW_RIGHT);

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT+META", "{RIGHT}");

Rotor Up

DescriptionVoiceOver GestureKeyboard Shortcut
Increment current Rotor itemrFlick upCommand + Control + Option + UpArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL + Keys.ALT + Keys.META + Keys.ARROW_UP);

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT+META", "{UP}");

Rotor Down

DescriptionVoiceOver GestureKeyboard Shortcut
Decrement current Rotor itemFlick downCommand + Control + Option + DownArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL + Keys.ALT + Keys.META + Keys.ARROW_DOWN);

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT+META", "{DOWN}");

Previous App

info

Not Supported

DescriptionVoiceOver GestureKeyboard Shortcut
Switch to the previous appFour-finger swipe leftN/A

Next App

info

Not Supported

DescriptionVoiceOver GestureKeyboard Shortcut
Switch to the next appFour-finger swipe rightN/A

Status Bar

DescriptionVoiceOver GestureKeyboard Shortcut
Move to/from the status barTap top of the screenControl + Option + M

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL+ Keys.ALT + "M");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "M");

Help On

DescriptionVoiceOver GestureKeyboard Shortcut
Toggle VoiceOver help onN/AControl + Option + K

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.CONTROL+ Keys.ALT + "K");

SeeTest (Legacy)

client.sendKeysWithBT("CTRL+ALT", "K");

Help Off

DescriptionVoiceOver GestureKeyboard Shortcut
Toggle VoiceOver help offN/AEsc (when Help is on)

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ESC);

SeeTest (Legacy)

client.sendKeysWithBT("{ESC}");

Android TalkBack

info

TalkBack should be configured with the default key-map. These shortcuts use the Alt key. To choose a different modifier, click SettingsAccessibilityTalkBackSettingsKeyboard shortcuts, then choose a modifier key.

Next

DescriptionKeyboard Shortcut
Move to the next itemAlt + RightArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ARROW_RIGHT);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{RIGHT}");

Previous

DescriptionKeyboard Shortcut
Move to the previous itemAlt + LeftArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ARROW_LEFT);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{LEFT}");

Above

DescriptionKeyboard Shortcut
Move to item aboveAlt + UpArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ARROW_UP);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{UP}");

Below

DescriptionKeyboard Shortcut
Move to item belowAlt + DownArrow

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ARROW_DOWN);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{DOWN}");

Click

DescriptionKeyboard Shortcut
Click on focused elementAlt + Enter

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.ENTER);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{ENTER}");

Back

DescriptionKeyboard Shortcut
Go backAlt + Backspace

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.BACK_SPACE);

SeeTest (Legacy)

client.sendKeysWithBT("ALT", "{BKSP}");

Home

DescriptionKeyboard Shortcut
Go to Home ScreenAlt + Control + H

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.CONTROL + "H");

SeeTest (Legacy)

client.sendKeysWithBT("ALT+CTRL", "H");

Recent Apps

DescriptionKeyboard Shortcut
Open the Recent Apps menuAlt + Control + R

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.CONTROL + "R");

SeeTest (Legacy)

client.sendKeysWithBT("ALT+CTRL", "R");

Notifications

DescriptionKeyboard Shortcut
Open the Notifications menuAlt + Control + N

Automation Code Example

Appium

driver.executeScript("seetest:client.sendKeysWithBT", "" + Keys.ALT + Keys.CONTROL + "N");

SeeTest (Legacy)

client.sendKeysWithBT("ALT+CTRL", "N");