I know that, sometimes, selenium is not able to click on an element, and in order to do so you need to execute some javascript code. For example, I recently used something like:
button = WebDriverWait(driver,10).until(EC.visibility_of_element_located((By.XPATH,"//label[@for='cli-no']/span[text()='No']")))
driver.execute_script("arguments[0].click();", button)
Can this same thing happen when trying to move a slider(using a dragAndDropByOfsset, for example)? How would you execute such a script?
Also, do you know whether good documentation exists regarding this issue?
Thanks!