我有这样的自定义Android搜索栏,以及它可以移动到的位置。它从中间开始:
我想首先移动滑块,然后检查它是否已保存。我有一个使用TouchAction的方法:
public void moveSeekBar(){
WebElement seekBar = appiumDriver.findElementById("com.feverapp:id/SymptomTrackingActivity_var");
//Get start point of seekbar.
int startX = seekBar.getLocation().getX();
System.out.println(startX);
//Get end point of seekbar.
int endX = seekBar.getSize().getWidth();
System.out.println(endX);
//Get vertical location of seekbar.
int yAxis = seekBar.getLocation().getY();
//Set slidebar move to position.
// this number is calculated based on (offset + 3/4width)
int moveToXDirectionAt = 786;
System.out.println("Moving seek bar at " + moveToXDirectionAt+" In X direction.");
//Moving seekbar using TouchAction class.
TouchAction act=new TouchAction(appiumDriver);
act.press(startX,yAxis).moveTo(moveToXDirectionAt,yAxis).release().perform();
}
我注意到的事情:
我尝试使用这样的sendkeys:
seekbar.sendKeys("0.5");
它有效:它将滑块移动到最左边,它只用0.5,当我输入0到1范围内的数字时,它没有工作
任何帮助非常感谢。感谢
答案 0 :(得分:1)
我刚刚解决了我的问题:我没有使用press(),而是尝试使用longpress(),它就像一个魅力!我可以在我想要的地方移动搜索栏。
答案 1 :(得分:1)
@Test
public void testSeekBar()throws Exception
{
//Locating seekbar using resource id
WebElement seek_bar=driver.findElement(By.id("seek_bar"));
// get start co-ordinate of seekbar
int start=seek_bar.getLocation().getX();
//Get width of seekbar
int end=seek_bar.getSize().getWidth();
//get location of seekbar vertically
int y=seek_bar.getLocation().getY();
// Select till which position you want to move the seekbar
TouchAction action=new TouchAction(driver);
//Move it will the end
action.press(start,y).moveTo(end,y).release().perform();
//Move it 40%
int moveTo=(int)(end*0.4);
action.press(start,y).moveTo(moveTo,y).release().perform();
}
这对我很有用
答案 2 :(得分:0)
我尝试过这样的seekbar.sendKeys(“ 50”); 及其对我有用。(0(min)-100(max))