You are here

public function BrowserMouseEventTrait::clickCoordinates in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserMouseEventTrait.php \Zumba\GastonJS\Browser\BrowserMouseEventTrait::clickCoordinates()

Click on given coordinates, THIS DOES NOT depend on the page, it just clicks on where we are right now

Parameters

$coordX:

$coordY:

Return value

mixed

File

vendor/jcalderonzumba/gastonjs/src/Browser/BrowserMouseEventTrait.php, line 56

Class

BrowserMouseEventTrait
Trait BrowserMouseEventTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

public function clickCoordinates($coordX, $coordY) {
  return $this
    ->command('click_coordinates', $coordX, $coordY);
}