Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 260 Bytes

mouse.rst

File metadata and controls

13 lines (10 loc) · 260 Bytes

Using mouse

Move mouse to a location

$browser->moveTo(50, 300);
// or
$browser->getElement(By::id('button'))->moveTo();
// or
$browser->getElement(By::id('button'))->moveTo(5, 5);