-
-
Notifications
You must be signed in to change notification settings - Fork 422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add two fingers tap support #170
Closed
sergey-plevako-badoo
wants to merge
19
commits into
appium:master
from
sergey-plevako-badoo:add_two_fingers_tap_support
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
6f4a929
Added twoFingerTap to the supported actions
sergey-plevako-badoo 25da960
Merge branch 'master' into add_two_fingers_tap_support
sergey-plevako-badoo f7569f9
Updated WebDriverAgent submodule
sergey-plevako-badoo 2925eb9
Merge branch 'master' into add_two_fingers_tap_support
sergey-plevako-badoo c9c4b38
Merge branch 'master' of https://github.com/appium/appium-xcuitest-dr…
sergey-plevako-badoo c80e61d
fixed typo
sergey-plevako-badoo caf6d84
Merge branch 'master' of https://github.com/appium/appium-xcuitest-dr…
sergey-plevako-badoo 3818c91
minor refactoring
sergey-plevako-badoo 8d8baa0
minor change
sergey-plevako-badoo 8924801
Merge branch 'master' into add_two_fingers_tap_support
sergey-plevako-badoo 65bd7db
Merge branch 'master' into add_two_fingers_tap_support
sergey-plevako-badoo 842f9fd
Merge branch 'add_two_fingers_tap_support' of https://github.com/serg…
sergey-plevako-badoo 2d9679e
Merge branch 'add_two_fingers_tap_support' of https://github.com/serg…
sergey-plevako-badoo fc87872
Merge branch 'add_two_fingers_tap_support' of https://github.com/serg…
sergey-plevako-badoo 34b7db9
merge master upstream
sergey-plevako-badoo 23fb502
merge and resolve conflicts
sergey-plevako-badoo 19081d3
Merge branch 'master' of https://github.com/appium/appium-xcuitest-dr…
sergey-plevako-badoo c31e2dc
Merge branch 'master' into add_two_fingers_tap_support
sergey-plevako-badoo 4e87a70
Merge branch 'master' into add_two_fingers_tap_support
sergey-plevako-badoo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @sergey-plevako-badoo! Is
twofingertap
in the W3C gesture spec? I don't remember it being there.If not, we can't just add new actions. I like this change in general but I think this function probably needs to be rewritten to actually detect a 2-digit tap based on the number of digits in the action chain, rather than creating a new action type.
I'm not up on the spec these days though so maybe I can be convinced otherwise. @imurchie should probably also comment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just saw some more changes come through here. @imurchie have you taken a look?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically nothing of this is in the W3C spec, so we could add it. Otherwise it could be mapped from a two tap gestures in the multi-action api.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, however given that when we do migrate to the new W3C spec, and it doesn't seem to have a "double-tap" primitive, probably better to do it the way that will be more easy to map to the spec later.