Actions MoveByOffset in Win App Driver: How can I see it or slow it down?
up vote
0
down vote
favorite
I have the code below and it does drag and drop from a position to another position but it't not exactly the correct position. How can I slow it down or see what it's doing? I have used Mouse.Move in CodedUI and Mouse.StartDragging etc and you can set the speed and see what they're doing and correct them if required. It's for dragging something on a canvas to another item on a canvas so it is related to position. I know I'll get there at some point and PMeter is a great tool to use to help you here but I'd like to be able to see what I'm doing sometimes to debug. Actions builder = new Actions(session); builder.MoveByOffset(100, -85); builder.ClickAndHold(); builder.MoveByOffset(gridPos2.X - gridPos1.X, gridPos2.Y - gridPos1.Y); b