gpt4 book ai didi

javascript - 我可以更改javascript : hasFocus() to return 'true' all the time?的文档方法吗

转载 作者:行者123 更新时间:2023-11-29 18:54:23 48 4
gpt4 key购买 nike

我试图欺骗这个特定的代码:

<!DOCTYPE html>
<html>
<body>

<p>Click anywhere in the document (the right frame) to get focus. If you click outside the document, it will lose focus.</p>

<p id="demo"></p>

<script>
setInterval("myFunction()", 1);

function myFunction() {
var x = document.getElementById("demo");
if (document.hasFocus()) {
x.innerHTML = "The document has focus.";
} else {
x.innerHTML = "The document DOES NOT have focus.";
}
}
</script>

</body>
</html>

因此,即使我不是 Chrome 中的前台应用程序,它也会返回 True。我想到的解决方案:

  1. 以某种方式使用 Selenium ?

  2. 在 chrome JS 引擎或 chrome 中编译新的 hasFocus() 方法?总是返回 True。

最佳答案

试试这个

document.__proto__.hasFocus = function() {return true}

关于javascript - 我可以更改javascript : hasFocus() to return 'true' all the time?的文档方法吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50026189/

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