Sha256: 4f25bb3eaca4b698fcb65730bc706bd3396880873ea7e0f6f358cea9ecb8842f

Contents?: true

Size: 1.07 KB

Versions: 3

Compression:

Stored size: 1.07 KB

Contents

package com.amplify.honeydew_server.actions;

import com.amplify.honeydew_server.Action;
import com.amplify.honeydew_server.Result;
import com.android.uiautomator.core.UiCollection;
import com.android.uiautomator.core.UiDevice;
import com.android.uiautomator.core.UiObject;
import com.android.uiautomator.core.UiObjectNotFoundException;
import com.android.uiautomator.core.UiSelector;

import java.util.Map;

public class IsElementWithNestedTextPresent extends Action {
    public IsElementWithNestedTextPresent(UiDevice uiDevice) {
        super(uiDevice);
    }

    @Override
    public Result execute(Map<String, Object> arguments) throws UiObjectNotFoundException {
        String parentDescription = (String) arguments.get("parent_description");
        String childText = (String) arguments.get("child_text");

        UiCollection parentElement = new UiCollection(new UiSelector().description(parentDescription));
        UiObject child = parentElement.getChild(new UiSelector().text(childText));

        return isUiObjectAvailable(child, arguments) ? Result.OK : Result.FAILURE;
    }

}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
honeydew-0.17.0 server/src/main/java/com/amplify/honeydew_server/actions/IsElementWithNestedTextPresent.java
honeydew-0.16.0 server/src/main/java/com/amplify/honeydew_server/actions/IsElementWithNestedTextPresent.java
honeydew-0.15.0 server/src/main/java/com/amplify/honeydew_server/actions/IsElementWithNestedTextPresent.java