在android appium中不支持滑动方法

在android appium中不支持滑动方法,第1张

概述我尝试在 android中使用swipe方法,但它无法正常工作. 码:- public void swipe() { JavascriptExecutor js = (JavascriptExecutor) driver; HashMap < String, Double > swipeObject = new HashMap < String, Double > (); 我尝试在 android中使用swipe方法,但它无法正常工作.

码:-

public voID swipe() {    JavaScriptExecutor Js = (JavaScriptExecutor) driver;    HashMap < String,Double > swipeObject = new HashMap < String,Double > ();    swipeObject.put("startX",0.95);    swipeObject.put("startY",0.5);    swipeObject.put("endX",0.05);    swipeObject.put("endY",0.5);    swipeObject.put("duration",1.0);    Js.executeScript("emulator: swipe",swipeObject);}

错误:-

org.openqa.selenium.WebDriverException: Not yet implemented.

任何帮助很棒的apprciation.

解决方法 将上下文更改为NATIVE_APP对我有用:

String originalContext = driver.getContext();driver.context("NATIVE_APP");driver.swipe(startx,starty,endx,endy,duration);driver.context(originalContext );
总结

以上是内存溢出为你收集整理的在android appium中不支持滑动方法全部内容,希望文章能够帮你解决在android appium中不支持滑动方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1127818.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存