invalidargumentexception

InvalidArgumentException: Message: unknown variant `wheel` error using scroll_to_element function from ActionChains with Selenium Python

InvalidArgumentException: Message: unknown variant `wheel` error using scroll_to_element function from ActionChains with Selenium Python Question: I tried to scroll down to the element of the page by using following code: # coding=utf-8 from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.action_chains import ActionChains driver = webdriver.Firefox() url = "https://selenium-python.readthedocs.io/navigating.html" driver.get(url) web_element = driver.find_element(By.ID, "filling-in-forms") …

Total answers: 1