Class Script

Represents a script instance that interacts with a BiDi connection.

Constructors

Properties

_events: ScriptEvents
_ws: BiDi

The BiDi connection object used by this script instance.

Accessors

Methods

  • Adds a preload script to the BiDi connection.

    Parameters

    • context: AddPreloadScriptParameters

      The parameters for adding a preload script.

    Returns Promise<AddPreloadScriptResult>

    A promise that resolves with the result of adding a preload script.

  • Calls a function on the BiDi connection.

    Parameters

    • context: CallFunctionParameters

      The parameters for calling a function.

    Returns Promise<EvaluateResult>

    A promise that resolves with the result of calling a function.

  • Disowns a script from the BiDi connection.

    Parameters

    • context: DisownParameters

      The parameters for disowning a script.

    Returns Promise<void>

    A promise that resolves when the script is disowned.

  • Evaluates a script on the BiDi connection.

    Parameters

    • context: EvaluateParameters

      The parameters for evaluating a script.

    Returns Promise<EvaluateResult>

    A promise that resolves with the result of evaluating a script.

  • Gets the realms from the BiDi connection.

    Parameters

    • context: GetRealmsParameters

      The parameters for getting realms.

    Returns Promise<GetRealmsResult>

    A promise that resolves with the result of getting realms.

  • Removes a preload script from the BiDi connection.

    Parameters

    • context: RemovePreloadScriptParameters

      The parameters for removing a preload script.

    Returns Promise<void>

    A promise that resolves when the preload script is removed.