appium java - 无法在iOS App中移动搜索栏

时间:2018-05-23 17:04:16

标签: appium appium-ios

我尝试下面的代码来移动iOS搜索栏。请帮帮我解决,或者我在这里做错了什么? 注意:我运行此代码时没有收到错误,但它根本没有移动搜索条。

WebElement seekBar = getDriver().findElement(By.xpath(<elementXpath>));
int startX = seekBar.getLocation().getX();
int endX = seekBar.getSize().getWidth();
int yAxis = seekBar.getLocation().getY();
int end50X = (int) (startX + ((seekBar.getSize().getWidth()) * 0.51));
TouchAction action = new TouchAction(getDriver());
action.press(startX, yAxis).moveTo(end50X, yAxis).release().perform();

0 个答案:

没有答案