Auto start next module

Hi,
Is there a way to get the next module/lesson of a course to start automatically rather than having to click on the next button each time.

many Thanks

2 Likes

It is a bit ridiculous how long they’ve been up and running and still do not have this feature. They are the only online learning platform I use that does not have this feature. While I love their content, every time I start a video I get frustrated and often look to see if any of my other platforms have it first.

I can certainly make a feature request :slight_smile:

Is this feature request in the queue? I like to study while rowing so my hands are not free to “hit the continue button”. Thanks!

In your browser development panel console you can paste this below which checks if the continue button is ready to be pressed every 30 seconds.

setInterval(() => {
  const buttons = document.querySelectorAll('button[aria-label="To Next Activity undefined"]');

  for (const btn of buttons) {
    const label = btn.textContent.trim();

    if (label === 'Continue') {
      console.log('Clicking the "Continue" button with correct aria-label.');
      btn.click();
    } else {
      console.log('Matching aria-label, but text is:', label);
    }
  }
}, 30000);

1 Like