gpt4 book ai didi

javascript - 有没有办法检查我的脚本是否在 phantomjs 中运行?

转载 作者:行者123 更新时间:2023-11-29 19:11:13 24 4
gpt4 key购买 nike

我正在开发一个框架,我想支持 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com