On one webpage, there exist a series of buttons with the same name that I need to select. I can collect these buttons through a command like
buttons = browser.find_by_name("value")
but once I select one of these buttons the rest of the elements are "Stale" and unable to be used. Is there a way, I can cycle through the elements of the list and click each one?