JSFiddle - React, Tailwind, and code Playground

HTML

https://www.reddit.com/robin

Take the Javascript snippet below, go into your Chrome developer console and paste it. It will automatically click the "GROW" button every 5 seconds and print a message saying that it did.

JavaScript

function clickGrow() { var timer = setTimeout(function () { document.getElementsByClassName("robin--vote-class--increase")[0].click(); console.log("Clicked Grow"); clickGrow();} , 5000);} clickGrow();