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