使用 Python (py-appscript) 确定当前的 Mac Chrome 网页
因此 Chromium 已正式添加对 Applescript 的支持:
http://code.google。 com/p/chromium/issues/detail?id=27468
我认为这也意味着 Chromium 可以通过 py-appscript 访问。问题是:如何?我可以使用 py-appscript 中的什么语法来获取 Chromium 中最前面选项卡的 URL?
So Chromium has officially added support for Applescript:
http://code.google.com/p/chromium/issues/detail?id=27468
I assume that this also means Chromium can be accessed by py-appscript. The question is: how? What syntax in py-appscript can I use to get the URL of the front-most tab in Chromium?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了。它是:
我找到它的方法是连续调用
.help()
。因此,首先,我调用了
appscript.app("Google Chrome").help()
,它列出了应用程序的所有可访问属性,并提醒我需要访问它的windows
属性。然后调用了
appscript.app("Google Chrome").windows.help()
,里面列出了windows
等属性,感觉有点n00b 因为不记得有关 Python 的内容,但希望这些信息可以帮助其他人(如果他们被 appscript 困住)。
Found it. It is:
The way I found it was by calling
.help()
successively.So, first, I called the
appscript.app("Google Chrome").help()
, which listed out all of the app's accessible properties and alerted me that I needed to access it'swindows
property.Then I called
appscript.app("Google Chrome").windows.help()
, which listed out the properties ofwindows
, etc.I feel like a bit of a n00b for not remembering this about Python but hopefully this information helps someone else if they are stuck on appscript.