Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions dusk.md
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,14 @@ The `click` method may be used to "click" on an element matching the given selec

$browser->click('.selector');

The `clickAtPoint` method may be used to "click" on the topmost element at a given pair of coordinates relative to the viewable area of the browser:

$browser->clickAtPoint(0, 0);

The `clickAtXPath` method may be used to "click" on an element matching the given XPath expression:

$browser->clickAtXPath('//div[@class = "selector"]');

#### Mouseover

The `mouseover` method may be used when you need to move the mouse over an element matching the given selector:
Expand Down