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