Sha256: a961a40d7f6f86f72ff1c4ae12f83e0e07c0e8fcaf5d7ce4bb388ab3d94099ad
Contents?: true
Size: 439 Bytes
Versions: 17
Compression:
Stored size: 439 Bytes
Contents
package com.amplify.honeydew_server.actions; import com.amplify.honeydew_server.*; import com.android.uiautomator.core.*; 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
17 entries across 17 versions & 1 rubygems