我有一个区域,我必须在上面画签名之类的东西我怎么能在 appium 版本 1.15 java 中做到这一点,附上图像 link
I have an area on which i have to draw something like signature how can i do this in appium version 1.15 java,Image link is attached
我有一个区域,我必须在上面画签名之类的东西我怎么能在 appium 1.15 版中做到这一点 java,附上图片 link。
我试过操作和触摸操作,但没有用。
TouchActions action= new TouchActions(driver)
.longPress((WebElement) PointOption.point(464, 727)).(PointOption.point(977, 7)).release().perform();
签名位置图片
使用 -
向左滑动
Dimension size = appiumDriver.manage().window().getSize();
int startx = (int) (size.width * 0.8);
int endx = (int) (size.width * 0.20);
int starty = size.height / 2;
appiumDriver.swipe(startx, starty, endx, starty, 1000);
向右滑动-
appiumDriver.context("NATIVE_APP");
Dimension size = appiumDriver.manage().window().getSize();
int endx = (int) (size.width * 0.8);
int startx = (int) (size.width * 0.20);
int starty = size.height / 2;
appiumDriver.swipe(startx, starty, endx, starty, 1000);
或
new TouchAction(driver).longPress(250, 1200).moveTo(900, 1200).release().perform();
我有一个区域,我必须在上面画签名之类的东西我怎么能在 appium 1.15 版中做到这一点 java,附上图片 link。
我试过操作和触摸操作,但没有用。
TouchActions action= new TouchActions(driver)
.longPress((WebElement) PointOption.point(464, 727)).(PointOption.point(977, 7)).release().perform();
签名位置图片
使用 -
向左滑动Dimension size = appiumDriver.manage().window().getSize();
int startx = (int) (size.width * 0.8);
int endx = (int) (size.width * 0.20);
int starty = size.height / 2;
appiumDriver.swipe(startx, starty, endx, starty, 1000);
向右滑动-
appiumDriver.context("NATIVE_APP");
Dimension size = appiumDriver.manage().window().getSize();
int endx = (int) (size.width * 0.8);
int startx = (int) (size.width * 0.20);
int starty = size.height / 2;
appiumDriver.swipe(startx, starty, endx, starty, 1000);
或
new TouchAction(driver).longPress(250, 1200).moveTo(900, 1200).release().perform();