I currently have a script that can find the first element with the link text "Toast" using
toast_link = driver.find_element_by_link_text('Toast')
The problem I am having is that there are multiple instances of the link text "Toast" and I would like to iterate through all of them. What is the best way to do this?