How can we perform drag drop in selenium?
Question
How can we perform drag drop in selenium?
Answer
act=ActionChains(driver) act.drag_and_drop(sourcelement,targetelement), with this method we can perform drag and drop
How can we perform drag drop in selenium?
act=ActionChains(driver) act.drag_and_drop(sourcelement,targetelement), with this method we can perform drag and drop