-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
actionsUser interaction actions (tap, drag, zoom, etc)User interaction actions (tap, drag, zoom, etc)enhancementNew feature or requestNew feature or request
Description
Description
Add support for pinch zoom gestures (zoom in and zoom out).
Requirements
- Implement
ZoomInActionandZoomOutActionclasses - Support two-finger pinch gesture simulation
- Add zoom center point parameter
- Add zoom scale parameter
- Use ADB multi-touch input
Files
smartmonkey/exploration/action.py(add Zoom actions)smartmonkey/device/event_manager.py(add zoom methods)
Usage example
# Zoom in at center
ZoomInAction(center_x=540, center_y=960, scale=2.0)
# Zoom out
ZoomOutAction(center_x=540, center_y=960, scale=0.5)Acceptance Criteria
- ZoomInAction implemented
- ZoomOutAction implemented
- Multi-touch gesture simulation
- Center point and scale parameters
- Works on maps and image apps
Metadata
Metadata
Assignees
Labels
actionsUser interaction actions (tap, drag, zoom, etc)User interaction actions (tap, drag, zoom, etc)enhancementNew feature or requestNew feature or request