9
Size: a a a
9
9
A
A
/Users/skutsenko/Desktop/Android/sdk/platform-tools/adb -P 5037 -s b5f4eb4f shell pm install -r /data/local/tmp/appium_cache/abd49196ad5379058b0c1074981900b63b414a7c.apk
9
A
9
9
DP
BO
AP
DP
AD
M
AP
SV
RS
longTap
Actions(WebDriverRunner.getWebDriver()).clickAndHold(element).perform()
RS
fun longTap(element: SelenideElement) {
PlatformTouchAction(WebDriverRunner.getWebDriver() as AppiumDriver<*>)
.longPress(PointOption.point(element.location))
.waitAction(WaitOptions.waitOptions(Duration.ofMillis(2000)))
.release()
.perform()
}
class PlatformTouchAction(performsActions: PerformsTouchActions): TouchAction<PlatformTouchAction>(performsActions)
V