Now that we've verified that we can automatically apply to a job, the next step to apply to all the jobs on the page!
There's a couple of things that we're going to ignore to make it easier:
1. We're only going to apply to the standard, 1-step applications e.g.

2. We're going to ignore the applications that require a note, e.g.

3. We're going to ignore the complex, multi-step applications, e.g.

Using what you've learnt (and some creativity/Googling) figure out how to get your Selenium bot to apply to all the jobs on the page. Clicking on each job on the left hand side in-turn and applying to each one automatically.
HINT: Selenium has a custom exception that gets raised when an element cannot be found it's called NoSuchElementException
You'll need to import it to use it:
from selenium.common.exceptions import NoSuchElementException