I am currently attempting to scroll down the Terms and Conditions box on a website using ActionChains and JSExecutor, but have been unsuccessful in doing so. It appears that this box only accepts scrolling via a mouse wheel. I would like to know how I can scroll the page using a mouse wheel on this website.
The website in question is https://userinyerface.com/game.html.
I have attempted doing:
element = driver.find_element(By.CSS_SELECTOR, ".terms-and-conditions__text")
actions.move_to_element(element).click().move_by_offset(0, 500).perform()
Am I choosing wrong element to move to?