Auto next on PluralSite

Nothing is worse than sitting back in training session, taking notes or just listening or even following along and all of a sudden, it's time for the next module. You either have to find the mouse, move the mouse or even get up to click the Start Next Module button.

This apparently has been an issue for a long time. We're programmers. We don't want to have to do things manaully when it should be really easy to automate.

I found a way to auto-next on PluralSite. It's a simple script that you can run in the console. Actually, I found a lot of ways, but I had to adjust it to the new wording on PluraSite.

Anyway, here's my script if you wanna use it.


            let autoNext = () => {
              Array.from(document.querySelectorAll('button'))
                .filter(b => b.textContent.includes('Start'))
                .forEach(b => b.click());



            };

            setInterval(autoNext, 5000);
        
An error has occurred. This app may no longer respond until reloaded.