I am using selenium and c#. I want to move my physical mouse pointer.
Actions action = new Actions(driver);
action.MoveByOffset(500, 500).ContextClick().Build().Perform();
//action.MoveToElement(element).ContextClick().Build().Perform();
My mouse pointer is not moving.