I need to move my physical mouse pointer. I am using selenium and c#.
Actions action = new Actions(driver);
action.MoveByOffset(500, 500).ContextClick().Build().Perform();
//action.MoveToElement(element).ContextClick().Build().Perform();
Both MoveByOffset and MoveToElement are performing the right-click but the mouse pointer is not moving.