作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个框架,我想支持 phantomjs。有没有办法检查页面JavaScript是在phantomjs还是karma+phantomjs下运行?我只用 karma+phantomjs 测试过,但我没有找到任何可以用来检查环境的全局变量。我认为会有一个 global.phantom 变量或类似的东西。这些环境之间有区别吗?
最佳答案
根据这篇文章:http://laputa.io/blog/2014/10/24/using-karma/ Karma 在 iframe 中运行,因此此 iframe 中不存在 phantomjs 变量。所以我们要做的就是通过 karma 关闭 iframe。为此,我们必须使用以下设置:
config.set({
client: {
useIframe: false
}
});
现在我们可以简单地使用 !!window._phantom
或 !!window.callPhantom
来检查 phantom 是否存在。然而,这是一个部分解决方案。我仍在寻找更好的,即使在 iframe 中也能看到幻影。
我最终得到了这样的代码:
var global = (function () {
return this;
})();
var phantom = global._phantom;
if (!phantom && global.__karma__ && global.frameElement)
phantom = global.parent._phantom;
var isPhantom = !!phantom;
这适用于 iframed 和非 iframed Karma,我猜它也适用于 vanilla phantomjs。
关于javascript - 有没有办法检查我的脚本是否在 phantomjs 中运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38705090/
我是一名优秀的程序员,十分优秀!