Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 PhantomJS 的一些文档中看到它可以访问全局“文档”对象,但我不知道是否也可以访问全局“窗口”对象。
所以我的问题是,有没有一种特殊的方法,或者我可以在使用 PhantomJS 初始化页面后直接调用窗口对象?
从终端运行phantomjs为您提供了一个可以玩的交互式会话。
phantomjs
如果您随后运行console.log(window),您将看到您可以访问该window对象。
console.log(window)
window
phantomjs> console.log(window); [object DOMWindow]