所以我想做一个这样的脚本:
window.location = "http://m.roblox.com/Catalog/VerifyPurchase?assetid=122174821&type=robux&expectedPrice=1"
document.getElementsByClassName('buyButtonClass')[1].click()
但我不知道如何刷新页面并重新开始代码,而无需再次手动输入谢谢
顺便说一句,它将在 Google Chrome Dev 中运行。工具控制台
我试过了
function blah() {
// window.location = "http://m.roblox.com/Catalog/VerifyPurchase?
assetid=122174821&type=robux&expectedPrice=1"
document.getElementsByClassName('buyButtonClass')[1].click()
if (some_condition) {
blah() // rerun the code
}
}
输出是“未定义的”,脚本什么也没做。
脚本转到一个链接,单击一个按钮(目前由于某种原因它没有单击)然后重新启动脚本(不工作)