Safari 和 Chrome 可以通过 AppleScript 执行 JavaScript
苹果浏览器:
tell application "Safari"
open location "http://example.com"
activate
do JavaScript "alert('example');" in current tab of first window
end tell
铬合金:
tell application "Google Chrome"
open location "http://example.com"
activate
execute front window's active tab javascript "alert('example');"
end tell
有没有办法在 Firefox 中做到这一点?
注意:关于 Opera 的相同问题在这里:AppleScript - JavaScript execution on Opera
我想一起问他们,但我决定问两个不同的问题,以便能够分别接受答案。