本文介绍了在Android应用中使用Appium定位元素后,如何水平滑动?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用了以下代码,但无法正常工作:
I have used the following code, but it is not working:
int startX = driver.findElement(By.xpath("//*[@class='android.widget.FrameLayout' and @index='1']")).getLocation.getX();
int startY = driver.findElement(By.xpath("//*[@class='android.widget.FrameLayout' and @index='1']")).getLocation.getY();
我得到的错误是:
getLocation cannot be resolved or is not a field
推荐答案
首先,您应该尝试获取getLocation()
的位置,而不是:.getLocation.getY()
.
Firstly you should try getting location as getLocation()
instead of: .getLocation.getY()
.
第二,您可以使用以下方法实现全方位的滑动/滚动:
Secondly you can implement swipe/scroll in all directions using:
TouchAction action = new TouchAction(driver);
int startY = element1.getLocation().getY() + (element1.getSize().getHeight() / 2);
int startX = element1.getLocation().getX() + (element1.getSize().getWidth() / 2);
int endX = element2.getLocation().getX() + (element2.getSize().getWidth() / 2);
int endY = element2.getLocation().getY() + (element2.getSize().getHeight() / 2);
action.press(startX, startY).waitAction(2000).moveTo(endX, endY).release().perform();
这篇关于在Android应用中使用Appium定位元素后,如何水平滑动?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!