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