123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace Facebook\WebDriver;
- use Facebook\WebDriver\Interactions\Internal\WebDriverCoordinates;
- interface WebDriverMouse
- {
-
- public function click(WebDriverCoordinates $where);
-
- public function contextClick(WebDriverCoordinates $where);
-
- public function doubleClick(WebDriverCoordinates $where);
-
- public function mouseDown(WebDriverCoordinates $where);
-
- public function mouseMove(
- WebDriverCoordinates $where,
- $x_offset = null,
- $y_offset = null
- );
-
- public function mouseUp(WebDriverCoordinates $where);
- }
|