Skip to content

Instantly share code, notes, and snippets.

View DavidLiedle's full-sized avatar
🐒
(code)

David Liedle DavidLiedle

🐒
(code)
View GitHub Profile
@DavidLiedle
DavidLiedle / Colorado Antibody Test Window Watcher.scpt
Last active December 17, 2020 19:05 — forked from s4y/Whole Foods delivery watcher.scpt
AppleScript which reloads a COVID-19 Antibody Test appointment opportunity page (Colorado, USA) and displays a notification when time slots are available or it otherwise needs attention (e.g. because an item has become unavailable)
(* Watch this page for change: https://www.nationaljewish.org/patients-visitors/patient-info/important-updates/coronavirus-information-and-resources/patient-care/covid-19-testing-antibody-diagnostic *)
tell application "Safari"
repeat
repeat with theWindow in every window
repeat with theTab in every tab of theWindow
if name of theTab contains "COVID-19 Antibody" then
set appointmentWindow to theWindow
set checkoutTab to theTab
end if
end repeat