Applescript:从网站获取信息

时间:2019-03-08 15:25:27

标签: applescript itunes

作为AppleScript的一部分,尝试从此网站(https://songbpm.com/one-of-these-nights-eagles)中获取少量信息,以自动在iTunes中的每个曲目上填充BPM。该脚本跟踪了轨道,打开了网页,现在我只需要列出第一个BPM(在本例中为110)并将其发送回我的脚本即可。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

完全用http://www.cubemg.com/how-to-extract-information-from-a-website-using-applescript/来完成此代码的使用:

to getInput(theClass, num)

tell application "Safari"

    set input to do JavaScript "document.getElementsByClassName('" & theClass & "')[" & num & "].innerHTML;" in document 1 -- uses JavaScript to set the variable input to the information we want

    return input 

end tell
end getInput 
set urlBPM to getInput("title", 3)