Searched refs:touchScreen (Results 1 – 12 of 12) sorted by relevance
/template/strap/vendor/php-webdriver/webdriver/lib/Interactions/ |
D | WebDriverTouchActions.php | 27 protected $touchScreen; variable in Facebook\\WebDriver\\Interactions\\WebDriverTouchActions 32 $this->touchScreen = $driver->getTouch(); 42 new WebDriverTapAction($this->touchScreen, $element) 56 new WebDriverDownAction($this->touchScreen, $x, $y) 70 new WebDriverUpAction($this->touchScreen, $x, $y) 84 new WebDriverMoveAction($this->touchScreen, $x, $y) 98 new WebDriverScrollAction($this->touchScreen, $x, $y) 113 new WebDriverScrollFromElementAction($this->touchScreen, $element, $x, $y) 126 new WebDriverDoubleTapAction($this->touchScreen, $element) 139 new WebDriverLongPressAction($this->touchScreen, $element) [all …]
|
/template/strap/vendor/php-webdriver/webdriver/lib/Interactions/Touch/ |
D | WebDriverTouchAction.php | 16 protected $touchScreen; variable in Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchAction 30 $this->touchScreen = $touch_screen;
|
D | WebDriverDoubleTapAction.php | 11 $this->touchScreen->doubleTap($this->locationProvider);
|
D | WebDriverTapAction.php | 11 $this->touchScreen->tap($this->locationProvider);
|
D | WebDriverLongPressAction.php | 11 $this->touchScreen->longPress($this->locationProvider);
|
D | WebDriverScrollAction.php | 26 $this->touchScreen->scroll($this->x, $this->y);
|
D | WebDriverDownAction.php | 32 $this->touchScreen->down($this->x, $this->y);
|
D | WebDriverMoveAction.php | 26 $this->touchScreen->move($this->x, $this->y);
|
D | WebDriverFlickAction.php | 32 $this->touchScreen->flick($this->x, $this->y);
|
D | WebDriverScrollFromElementAction.php | 32 $this->touchScreen->scrollFromElement(
|
D | WebDriverFlickFromElementAction.php | 45 $this->touchScreen->flickFromElement(
|
/template/strap/vendor/php-webdriver/webdriver/lib/ |
D | WebDriverUpAction.php | 27 $this->touchScreen->up($this->x, $this->y);
|