All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.serenitybdd.screenplay.webtests.actions.LastScriptExecution Maven / Gradle / Ivy

There is a newer version: 4.2.8
Show newest version
package net.serenitybdd.screenplay.webtests.actions;

import net.serenitybdd.screenplay.Question;

/**
 * Retrieve the result of the last Javascript execution.
 */
public class LastScriptExecution {
    public static final String LAST_SCRIPT_EXECUTION_RESULT = "LAST_SCRIPT_EXECUTION_RESULT";

    public static Question result() {
        return actor -> actor.recall("LAST_SCRIPT_EXECUTION_RESULT");
    }
}