gpt4 book ai didi

android - 使用 appium-android 滚动到页面末尾

转载 作者:行者123 更新时间:2023-12-03 23:23:58 25 4
gpt4 key购买 nike

对于混合应用程序,我需要滚动到页面末尾。我能怎么做 ?
我可以使用 driver.scrollTo(); 滚动到确切的元素;和 driver.ScrollToExact();

但我想从上到下滚动应用程序。
谁能告诉我吗?

最佳答案

 @Test
public void testScroll()throws Exception
{
for(int i=0;i<4;i++)
{
Thread.sleep(2000);
if (driver.findElement(By.name("end_item")).isDisplayed())
{
driver.findElement(By.name("end_item")).click();
break;
}
else
{
verticalScroll();
}

}
}
public void verticalScroll()
{
size=driver.manage().window().getSize();
int y_start=(int)(size.height*0.60);
int y_end=(int)(size.height*0.30);
int x=size.width/2;
driver.swipe(x,y_start,x,y_end,4000);
}

这将帮助您滑动直到结束或直到您想要的任何位置。

关于android - 使用 appium-android 滚动到页面末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33212411/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com