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