Auto.js官网
直接上代码,不多介绍,如何运行脚本请自看官网教程
onload()
function onload()
{
toast("测试自动发布")
launchApp("微信")
textFx()
}
function textFx()
{
text("发现").findOne().parent().parent().click()
textPyq()
}
function textPyq()
{
text("朋友圈").findOne().parent().parent().parent().parent().parent().parent().parent().parent().click()
imgXc()
}
function imgXc()
{
id("d8").findOne().longClick()
setTimeout(()=>{
setWb()
},1000)
}
function setWb()
{
setText("测试自动发朋友圈脚本");
// 这里的文本可以请求接口去自动跟换文本
// 设置完文本后发送
addText()
}
function addText()
{
id("d6").findOne().click()
}