1 2 3 4 5 6 7 8 9 10 11 12 13
|
client.windowHandlePosition('{dc30381e-e2f3-9444-8bf3-12cc44e8372a}', function(err,res) { ... });
client.windowHandlePosition(function(err,res) { ... });
client.windowHandlePosition('{dc30381e-e2f3-9444-8bf3-12cc44e8372a}', {x: 100, y: 200});
client.windowHandlePosition({x: 100, y: 200});
|