Safari - AppleScript does not move to the next section of a bookdown online book

I can click manually on the right arrow and move to the next section, but I can't manage to have the script to do that.

How can I have AppleScript "turn the page" and move to the next section?

If you are trying to programmatically click the right-arrow, as shown in the image below, then the following example AppleScript code can do that:

tell application "Safari" to ¬
    tell document 1 to ¬
        do JavaScript ¬
            "document.getElementsByClassName('fa fa-angle-right')[0].click();"

Notes:

This requires Allow JavaScript from Apple Events to be check on the hidden Develop menu.

To unhide the hidden Develop menu:

  • Safari > Preferences… > Advanced > [√] Show Develop menu in menu bar

enter image description here


Update to address:

Also, I welcome suggestions to improve the script! I wonder if it would be easy to avoid repeating "tab" 15 times.

Here is how I'd use the JavaScript from above and coded to avoid using the key code and or keystroke System Events commands, especially tabbing around the UI.

Example AppleScript code:

tell application "System Events"
    
    tell application process "Safari"
        
        set frontmost to true
        
        set i to 0
        repeat until (its frontmost = true)
            delay 0.1
            set i to i + 1
            if i ≥ 20 then return
        end repeat
        
        click menu item "Print…" of ¬
            menu 1 of ¬
            menu bar item "File" of ¬
            menu bar 1
        
        tell its front window
            
            set i to 0
            repeat until (exists menu button "PDF" of sheet 1)
                delay 0.1
                set i to i + 1
                if i ≥ 20 then return
            end repeat
            
            click menu button "PDF" of sheet 1
            
            set i to 0
            repeat until (exists menu item "Save as PDF" of ¬
                menu 1 of menu button "PDF" of sheet 1)
                delay 0.1
                set i to i + 1
                if i ≥ 20 then return
            end repeat
            
            click menu item "Save as PDF" of ¬
                menu 1 of ¬
                menu button "PDF" of ¬
                sheet 1
            
            set i to 0
            repeat until (exists button "Save" of sheet 1 of sheet 1)
                delay 0.1
                set i to i + 1
                if i ≥ 20 then return
            end repeat
            
            click button "Save" of sheet 1 of sheet 1
            
            set i to 0
            repeat while (exists sheet 1)
                delay 0.1
                set i to i + 1
                if i ≥ 100 then return
            end repeat
            
        end tell    
    end tell
end tell

tell application "Safari" to ¬
    tell document 1 to ¬
        do JavaScript ¬
            "document.getElementsByClassName('fa fa-angle-right')[0].click();"

Notes:

Since this type of AppleScript script is using UI Scripting, I have included an error handling in the form of a repeat loop to wait up to two seconds for the target UI element to become available to be acted upon for most of the targets, however the last repeat loop waits longer because it has to wait until the Save as PDF to complete. A simple delay command with an appropriate value could be used instead, but with the include delay of a tenth of a second in the repeat loops it shouldn't have to wait any longer than need be. In other words, I'd only use simple delay command if I want to slow the script down from going through the various events of the UI. It's doubtful that it would need to be adjusted, but obviously do so as/if necessary.

If the timeout is reached, the script aborts at that point without any error message. The single-line if i ≥ 20 then return statements can be turned into a full if block and include an error message via the display dialog, display alert, or display notification command as wanted.