/test/testfwk/arkxtest/uitest/core/ |
H A D | widget_operator.cpp | 96 auto touch = OHOS::uitest::GenericClick(op, center); in GenericClick() local 97 driver_.PerformTouch(touch, options_, error); in GenericClick() 154 auto touch = GenericSwipe(TouchOp::DRAG, centerFrom, centerTo); in DragIntoWidget() local 155 driver_.PerformTouch(touch, options_, error); in DragIntoWidget() 169 auto touch = GenericPinch(rectBound, scale); in PinchWidget() local 170 driver_.PerformTouch(touch, options_, error); in PinchWidget() 195 auto touch = OHOS::uitest::GenericClick(TouchOp::CLICK, center); in InputText() local 196 driver_.PerformTouch(touch, options_, error); in InputText() 265 auto touch = (toTop) ? GenericSwipe(TouchOp::SWIPE, topPoint, bottomPoint) in TurnPage() local 267 driver_.PerformTouch(touch, options in TurnPage() [all...] |
H A D | window_operator.cpp | 106 auto touch = GenericSwipe(TouchOp::DRAG, from, to); in CallBar() local 107 driver_.PerformTouch(touch, options_, out.exception_); in CallBar() 119 auto touch = GenericClick(TouchOp::CLICK, focus); in Focus() local 120 driver_.PerformTouch(touch, options_, out.exception_); in Focus() 135 auto touch = GenericSwipe(TouchOp::DRAG, from, to); in MoveTo() local 136 driver_.PerformTouch(touch, options_, out.exception_); in MoveTo() 310 auto touch = GenericClick(TouchOp::CLICK, widgetCenter); in BarAction() local 311 driver_.PerformTouch(touch, options_, out.exception_); in BarAction()
|
H A D | frontend_api_handler.cpp | 851 auto touch = GenericClick(TouchOp::CLICK, point); in RegisterUiDriverMiscMethods2() 852 driver.PerformTouch(touch, uiOpArgs, out.exception_); in RegisterUiDriverMiscMethods2() 911 auto touch = GenericSwipe(op, point0, point1); in RegisterUiDriverTouchOperators() 912 driver.PerformTouch(touch, uiOpArgs, out.exception_); in RegisterUiDriverTouchOperators() 914 auto touch = GenericClick(op, point0); in RegisterUiDriverTouchOperators() 915 driver.PerformTouch(touch, uiOpArgs, out.exception_); in RegisterUiDriverTouchOperators() 999 auto touch = GenericSwipe(op, from, to); in RegisterUiDriverFlingOperators() 1000 driver.PerformTouch(touch, uiOpArgs, out.exception_); in RegisterUiDriverFlingOperators() 1019 auto touch = MultiPointerAction(pointer); in RegisterUiDriverMultiPointerOperators() 1020 driver.PerformTouch(touch, uiOpArg in RegisterUiDriverMultiPointerOperators() [all...] |
H A D | ui_driver.h | 58 /**Perform the given touch action.*/ 59 void PerformTouch(const TouchAction &touch, const UiOpArgs &opt, ApiCallErr &err); 61 void PerformMouseAction(const MouseAction &touch, const UiOpArgs &opt, ApiCallErr &err);
|
H A D | ui_driver.cpp | 357 void UiDriver::PerformTouch(const TouchAction &touch, const UiOpArgs &opt, ApiCallErr &err) in PerformTouch() argument 363 touch.Decompose(events, opt); in PerformTouch() 370 void UiDriver::PerformMouseAction(const MouseAction &touch, const UiOpArgs &opt, ApiCallErr &err) in PerformMouseAction() argument 376 touch.Decompose(events, opt); in PerformMouseAction()
|
/test/testfwk/arkxtest/uitest/input/ |
H A D | ui_input.cpp | 164 auto touch = GenericSwipe(op, from, to); in FlingActionInput() local 165 driver.PerformTouch(touch, uiOpArgs, exception_); in FlingActionInput() 191 auto touch = GenericSwipe(op, from, to); in SwipeActionInput() local 192 driver.PerformTouch(touch, uiOpArgs, exception_); in SwipeActionInput() 244 auto touch = GenericClick(TouchOp::CLICK, point); in TextActionInput() local 245 driver.PerformTouch(touch, uiOpArgs, exception_); in TextActionInput() 269 auto touch = GenericClick(op, point); in ClickActionInput() local 270 driver.PerformTouch(touch, uiOpArgs, exception_); in ClickActionInput()
|
/test/testfwk/arkxtest/uitest/addon/ |
H A D | extension_executor.cpp | 178 auto touch = GenericAtomicAction(static_cast<ActionStage>(stage), Point(px, py));
in AtomicTouch() local 181 driver.PerformTouch(touch, uiOpArgs, err);
in AtomicTouch()
|