2

我想获取 Google Chrome 的活动标签的网址。

在 Safari 中,

url = appscript.app('Safari').windows.first.current_tab.URL()

上面的代码有效,但是

    url = appscript.app('Google Chrome').windows.first.current_tab.URL()

它不起作用

你有什么主意吗?提前致谢。

4

1 回答 1

1

来源网址 --> http://reganmian.net/wiki/appscript

url = appscript.app("Google Chrome").windows[1].get.tabs[dt.windows[1].get.active_tab_index.get].get.URL.get
于 2013-11-07T23:22:50.180 回答