Sha256: 894f02ca6095eb5666f979d777a50f4e2ec49b6e22aa05332d11d926f201ef73
Contents?: true
Size: 601 Bytes
Versions: 3
Compression:
Stored size: 601 Bytes
Contents
package com.amplify.honeydew_server.actions; import com.android.uiautomator.core.UiDevice; import com.android.uiautomator.core.UiObjectNotFoundException; import com.amplify.honeydew_server.Action; import com.amplify.honeydew_server.Result; 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
3 entries across 3 versions & 1 rubygems