Use auto.js to automate daily check-inDue to the epidemic, I need to check in at home on time every day. When I just wake up every day, I can’t avoid being inattentive or not being able to see the app or click the button (I’m just making that up). So, I wanted to create something that can automate the process so that I don’t have to do the tedious daily clocking in. I did it right away, and then I remembered the accessibility script for stacking cats that I wrote before Double Eleven, so this is not a problem at all. Tool library used: auto.jsBecause auto.js needs to rely on barrier-free operation on Android phones. So currently it only supports Android phones and needs to be on Android 6.0 or above. The official website has detailed introductions, so I won’t go into details here. One more thing to say, the author of auto.js stopped maintaining it in 2019, so I chose another library that took over auto.js: autox.js. They are both very similar, so it doesn’t matter which one you use. Practical operationFirst, you need to make sure that your computer and mobile phone are on the same network, install vscode on your computer, and search for the plug-in "auto.js" to install it. You can also edit the code on your phone, but it's really inconvenient. After the installation is complete, press "cmd+shift+P" and enter "auto". The relevant settings will appear in the list below. Click "Start Service" to edit the auto.js code on your computer. You need to open the settings on your mobile phone and click "Connect to Computer", enter the computer IP, and you can see the prompt of the new device connection on the computer. (Note that you must first choose to turn on the service on your computer before you can connect) Next, you can use auto.js on the mobile phone to debug and analyze the layout of each page. After writing the code, click Save to All Devices on vscode, and the code on the computer will be synchronized to the phone. Click the run button of the plug-in to see the entire running process. There are also a lot of tutorials on script writing and operation. I just wrote the code for this requirement and didn’t go into it too much. If you are interested, you can learn it by yourself. Here I will just talk about some of the problems I encountered.
Finally, the completed script can be packaged and distributed using auto.js's "packaged application". Finally, here is the code: auto() auto.waitFor(); console.show(true); //Open the console console.log("i Light Industry University automatic clock-in script"); console.log("version--------1.1"); console.log("autuer---zhaosheng"); app.launch('io.cordova.zhqy') console.log("app has been opened"); sleep(5000); //Click on application servicevar fuwu = text("Application Service").findOnce(); fuwu.click(); console.log("Select application service"); sleep(2000) console.log("Click on epidemic prevention and control"); click("Epidemic Prevention and Control") sleep(2000) // 2. Home study className("android.view.View").depth(11).desc("home").findOne().click(); console.log("Click to study at home"); // id("home").findOne().click() sleep(1500) //Health Daily// click(222,945) console.log("Click on Health Daily"); click("Health Daily") sleep(2000) //Select the current date // 1. Get today's date console.log("Calculate the current date"); var myDate = new Date(); let day = myDate.getDate(); //Corresponding page numberif(day < 10){ day = "0"+day console.log("Current is:"+day); } // alert(day) click(day) console.log("Click to check in now"); click("Check in now") sleep(3000) click("Click to get current location") sleep(2000) click(244,2130) sleep(3000) swipe(550,1925,550,465,2000) swipe(550,1925,550,465,2000) sleep(2000) click(493,2095) sleep(2000) click(764,1638) This is the end of this article about using auto.js to realize automated daily punch-in. For more related auto.js automated daily punch-in content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the underlying encapsulation of Java connection to MySQL
>>: Nginx configuration location matching rules example explanation
Problem: The PHP program on one server cannot con...
Table of contents 1. Ant Design Vue 1. Official w...
After being tortured by the front-end cross-domai...
HTML structure <body> <div class="w...
Yesterday, I helped someone install a system and ...
Using CSS layout to create web pages that comply w...
1. Alipay method: Alipay method: Click Alipay to ...
After configuring VIP, the error message that app...
#Case: Query employee salary levels SELECT salary...
For work needs, I found a lot of information on t...
1. Problem During development, when inserting dat...
Table of contents Problem 1: Destruction 1. How t...
Table of contents 1 Conceptual distinction 2 Case...
This article uses examples to describe the add, d...
Table of contents queueMicrotask async/await Mess...