i want to move the canvas element using mouse right click and mouse move. how can i do with it actiondriver and send_keys in selenium. could someone help me with this. thanks.
i have tried something like
ActionChains(driver).move_to_element(canvas_element).send_keys(
Keys.chord(Keys.CONTROL, Keys.ADD)).build().perform();
this is to zoomin the canvas element. similarly how can i perform right click and mouse move.