Skip to content

Commit 422b63b

Browse files
first commit
0 parents  commit 422b63b

5 files changed

+82
-0
lines changed

.github/workflows/macos-voiceover.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: MacOS VoiceOver
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
start-voiceover-and-move-right:
11+
runs-on: ${{ matrix.os }}
12+
continue-on-error: true
13+
strategy:
14+
matrix:
15+
os: [macos-13, macos-14, macos-15]
16+
steps:
17+
- uses: actions/checkout@v3
18+
- run: |
19+
# Disable splash screen
20+
defaults write com.apple.VoiceOverTraining doNotShowSplashScreen -bool true
21+
22+
sleep 1
23+
24+
# Start VoiceOver
25+
/System/Library/CoreServices/VoiceOver.app/Contents/MacOS/VoiceOverStarter &
26+
27+
# See if VoiceOver process is running
28+
ps aux | egrep "[V]oiceOver"
29+
30+
# See if AppleScript thinks VoiceOver is running
31+
/usr/bin/osascript voiceOverRunning.applescript
32+
33+
sleep 1
34+
35+
# Use AppleScript to "activate" VoiceOver
36+
until $(/usr/bin/osascript voiceOverActivate.applescript)
37+
do
38+
echo "VO not ready..."
39+
sleep 1
40+
done
41+
echo "VO ready."
42+
43+
# Attempt to control VoiceOver using AppleScript
44+
/usr/bin/osascript voiceOverPerform.applescript
45+
46+
sleep 1
47+
48+
# Terminate VoiceOver
49+
kill -15 $(ps aux | egrep "[V]oiceOver.app/Contents/MacOS/VoiceOver launchd -s" | awk '{print $2}')

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# macos-15 VoiceOver Error Demo
2+
3+
Simple workflow to demonstrate macos-15 issues with VoiceOver AppleScript support reported in https://github.com/actions/runner-images/issues/11257

voiceOverActivate.applescript

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
delay 1
2+
3+
with timeout of 10 seconds
4+
tell application "VoiceOver"
5+
with transaction
6+
-- Ensure VoiceOver is focused
7+
activate
8+
end transaction
9+
end tell
10+
end timeout

voiceOverPerform.applescript

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
delay 1
2+
3+
with timeout of 30 seconds
4+
tell application "VoiceOver"
5+
with transaction
6+
-- Attempt to move the VO cursor right 5 times.
7+
-- This is where we can see evidence of macos-15 agents not having
8+
-- AppleScript support enabled for VoiceOver as it errors.
9+
tell vo cursor to perform action
10+
end transaction
11+
end tell
12+
end timeout

voiceOverRunning.applescript

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
delay 1
2+
3+
with timeout of 30 seconds
4+
tell application "VoiceOver"
5+
-- See if VoiceOver is running
6+
return running
7+
end tell
8+
end timeout

0 commit comments

Comments
 (0)