Cookie Clicker Automation
Cookie Clicker Automation
Cookie Clicker Automation
Keep Scrolling
What?
What?
What?
Watch closely as this incredible tool demonstrates its screen-reading abilities, effortlessly identifying the name of a bakery and dynamically placing the mouse in relation to it. With this information, you can unleash the power of a for-loop to click on the cookie multiple times. Let's explore how you can run this automation yourself:
Watch closely as this incredible tool demonstrates its screen-reading abilities, effortlessly identifying the name of a bakery and dynamically placing the mouse in relation to it. With this information, you can unleash the power of a for-loop to click on the cookie multiple times. Let's explore how you can run this automation yourself:
Watch closely as this incredible tool demonstrates its screen-reading abilities, effortlessly identifying the name of a bakery and dynamically placing the mouse in relation to it. With this information, you can unleash the power of a for-loop to click on the cookie multiple times. Let's explore how you can run this automation yourself:
Step by Step Guidance to do it:
Step by Step Guidance to do it:
Step 1.
Step 1.
Install the askui library by Copy pasting the provided Commands
Install the askui library by Copy pasting the provided Commands
Step 2.
Step 2.
Set up your first test suite, feel free to watch along the video
Set up your first test suite, feel free to watch along the video
Step 3.
Step 3.
Test your Setup by running your first Test through the Terminal
Test your Setup by running your first Test through the Terminal
Step 4.
Step 4.
Congrats! Your cleared the first Steps, now one last step:
Congrats! Your cleared the first Steps, now one last step:
Final Step
Final Step
Copy the Code below into your Code Environment and Run the Script
Copy the Code below into your Code Environment and Run the Script
it('should click on my element', async () => {
await aui.mouseLeftClick().exec()
// Change belows Bakery text, to whatever you named your Bakery
await aui.moveMouseRelativelyTo(0, 300).withExactText("Repeti's bakery").exec()
for (let i = 0; i < 100; i++) {
await aui.mouseLeftClick().exec()
}
});