We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Trying perform swipe from right to left on element in my app on iPhone (4s) with code:
$this->swipe(210, 121, 50, 121);
But element move down and then on a right.
Remark: On Java swiping occurs correctly.
Appium Version: 1.5.3 (Ara) Php-client Version: 0.1.0
The text was updated successfully, but these errors were encountered:
As i undestand method appium not support this method. I send rest request to appium like this:
public function swipe() { $client = new Client(); $client->post(config('selenium.url') . '/session/' . $this->browser->getSessionID() . '/touch/perform', [ RequestOptions::JSON => \GuzzleHttp\json_decode('[{"action":"press","options":{"x":100,"y":200}},{"action":"wait","options":{"ms":300}},{"action":"moveTo","options":{"x":0,"y":-200}},{"action":"release","options":{}}]') ] ); }
Sorry, something went wrong.
No branches or pull requests
Trying perform swipe from right to left on element in my app on iPhone (4s) with code:
$this->swipe(210, 121, 50, 121);
But element move down and then on a right.
Remark: On Java swiping occurs correctly.
Appium Version: 1.5.3 (Ara)
Php-client Version: 0.1.0
The text was updated successfully, but these errors were encountered: