evidenziando il testo in safari

2

Devo evidenziare ogni istanza di alcune parole chiave in Safari.

Ho questo script che funziona:

set myList to {"demo", "demo1"}


try
    tell application "Safari"
        do JavaScript "document.designMode = 'on';" in tab 1 of window 1


        repeat with thisText in myList
            do JavaScript "var sel = window.getSelection();
                    sel.collapse(document.body, 0);
                    while (window.find('" & thisText & "', true)) {document.execCommand('HiliteColor', false, '#5cdf64');}
                    sel.collapseToEnd()" in tab 1 of window 1
        end repeat
        do JavaScript "document.designMode = 'off';" in tab 1 of window 1

    end tell
on error
    --
end try

Come posso eseguire in ogni scheda invece una sola scheda?

Ci provo, ma questo non funziona a causa del modo in cui Safari consegna le schede

try
    tell application "Safari"
        repeat with atab in tabs
            do JavaScript "document.designMode = 'on';" in atab of window 1


            repeat with thisText in myList
                do JavaScript "var sel = window.getSelection();
                    sel.collapse(document.body, 0);
                    while (window.find('" & thisText & "', true)) {document.execCommand('HiliteColor', false, '#5cdf64');}
                    sel.collapseToEnd()" in atab of window 1
            end repeat
            do JavaScript "document.designMode = 'off';" in atab of window 1
        end repeat
    end tell
on error
    --
end try

indica l'applicazione "Safari"     conta ogni tab         - > errore numero -1728 da ogni scheda fine tell

l'aggiornamento, l'unico problema, è far scorrere la pagina su e giù ogni volta che avviene la ripetizione:

repeat 50 times
    set mylist to {{"ask", "#5cdf64"}, {"yesterday", "#FFFF00"}, {"more random e.g", "#FF0000"}}
    tell application "Safari"
        activate
        set theWindow to front window
        tell theWindow
            set tabCount to count of tabs
            repeat with tabIndex from 1 to tabCount
                set current tab to tab tabIndex
                tell current tab
                    repeat with colourPair in mylist
                        do JavaScript "document.designMode = 'on'"
                        do JavaScript "var sel = window.getSelection(); sel.collapse(document.body, 0); while (window.find('" & (item 1 of colourPair) & "', true)) {document.execCommand('HiliteColor', false, '" & (item 2 of colourPair) & "');}"
                        do JavaScript "document.designMode = 'off'"
                    end repeat
                end tell
            end repeat
        end tell
    end tell
end repeat
    
posta Kevin 26.11.2018 - 14:29
fonte

0 risposte

Leggi altre domande sui tag