I have this Selenium Code that should click on a size selection button.
submit_button = driver.find_element_by_class_name(\'pro_sku\') elementList = submit_but
You can use action_chains to simulate mouse movment
actions = ActionChains(driver) actions.move_to_element(elementList[3]).perform() elementList[3].click()
Edit
The tags are not the actual sizes. Try
sizes = driver.find_elements_by_class_name('size_defaut') sizes[3].click()