2

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

我想一起问他们,但我决定问两个不同的问题,以便能够分别接受答案。

4

1 回答 1

1

在 Firefox 中使用 AppleScript 运行 javascript 尚未实现。虫子故事
它处于新状态并且没有受让人。你可以接受它:)

于 2013-01-17T16:05:05.873 回答