如何使用Appium(java)自动点击微信消息中的“阅读更多”

时间:2016-03-15 02:20:05

标签: java appium

当我使用appium + eclipse进行微信自动化时,我发现找不到Read more链接。所有内容都包含在FrameLayout中,但无法选择所有元素。我尝试使用appdriver.tap(1, x, y, 1)命令单击“read more”链接,x和y是“read more”链接的坐标,但它不起作用。有什么好主意吗? enter image description here

1 个答案:

答案 0 :(得分:0)

use driver.tap(1, yourelement, 1000) 
driver.tap(int finger, WebElement, int duration) //this is the function i use above

还有一个功能,那就是

driver.tap(int finger, int x,int y, int duration) 

如果这没有帮助,你可以使用这样的触摸点击:

TouchAction action = new TouchAction(driver);
action.tap(int x, int y).release().perform();