Skip to content
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

pause Action Not Working in Pointer Action Sequence #936

Open
myungkyojung opened this issue Aug 28, 2024 · 1 comment
Open

pause Action Not Working in Pointer Action Sequence #936

myungkyojung opened this issue Aug 28, 2024 · 1 comment

Comments

@myungkyojung
Copy link

myungkyojung commented Aug 28, 2024

I wrote a W3C action to perform a double-tap gesture, but I've encountered an issue where the action {"type":"pause", "duration": 200} doesn't seem to work as expected. The rest of the sequence executes correctly, but this specific pause doesn't have any effect. Could you help me understand why this is happening and how to fix it?

{
"actions":[
{
"type":"pointer",
"id":"finger1",
"parameters":{"pointerType":"touch"},
"actions":[
{"type":"pointerMove", "x":100,"y":100},
{"type":"pointerDown"},
{"type":"pause", "duration": 50},
{"type":"pointerUp"},
{"type":"pause", "duration": 200},
{"type":"pointerDown"},
{"type":"pause", "duration": 50},
{"type":"pointerUp"}
]
}
]

@KazuCocoa
Copy link
Member

appium/appium#16583 could be duplicated. In sort, it might be difficult to fix with low-level XCTest APIs. https://appium.github.io/appium-xcuitest-driver/latest/guides/gestures/ also would help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants