Sha256: 97aee1298b35850593e00689d37b9f6277893341de86d4ba096addf57de89e33
Contents?: true
Size: 436 Bytes
Versions: 17
Compression:
Stored size: 436 Bytes
Contents
package com.amplify.honeydew_server.actions; import com.amplify.honeydew_server.*; import com.android.uiautomator.core.*; import java.util.Map; public class PressBack extends Action { public PressBack(UiDevice uiDevice) { super(uiDevice); } @Override public Result execute(Map<String, Object> arguments) throws UiObjectNotFoundException { getUiDevice().pressBack(); return Result.OK; } }
Version data entries
17 entries across 17 versions & 1 rubygems