I'm trying to perform drag and drop with Selenium Chrome driver in Python using
source = self.driver.find_element_by_xpath("//test-card")
destination = self.driver.find_element_by_xpath("//test-folder")
ActionChains(self.driver).drag_and_drop(source, destination).perform()
but the element is dropped at the pointer location and not at the destination location. Here the same issue: Selenium driver Python drag and drop, element is dropped where is pointer and not dropping area but not solved
Any ideas? I guess the driver needs some preference to be set up but I didn't find any useful preference to this purpose