I sometimes use ActionsChains with any problems, today it don’t work do you know why?
scrolling_bar = driver.find_element(By.CSS_SELECTOR, "#scrolling_bar")
start = scrolling_bar.location
ActionChains(driver)
.drag_and_drop_by_offset(scrolling_bar, start['x'], start['y'] - 1000)
.perform()
print('This message never be said')
ActionChains(driver).reset_actions()
The actions is been execute but stop my program
New contributor
Laslo Laslo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.