We all know that Safari doesn’t have Applescript support for tabs.
However, I found some Applescripts manipulating Safari tabs.
Usually they contain code like this:
--Count the number of tabs
set tabCount to count radio buttons of window 1
repeat with i from 1 to tabCount
-- activate each tab
click radio button i of window 1
...
etc.
And it works!
Apparently radiobuttons are used!?! Radio buttons??? Where?
Where is this black magic documented?
I want to learn more!