Если вы пытаетесь нажать каждую из этих кнопок, вы можете сделать следующее
boton = '#movie div.ytp-chrome-bottom > div.ytp-chrome-controls > div.ytp-left-controls > a.ytp-next-button.ytp-button'
numberOfButtons = len(driver.find_elements_by_css_selector(boton))
# now iterate through all the buttons and click on them
for counter in range(numberOfButtons):
driver.find_elements_by_css_selector(buton)[counter].click()