@opensteer/engine-abp 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,3 +8,7 @@ building directly against the engine package.
8
8
  ```bash
9
9
  pnpm add @opensteer/engine-abp
10
10
  ```
11
+
12
+ `agent-browser-protocol` downloads its bundled ABP browser during install. In offline
13
+ or custom environments, point Opensteer at an existing binary with
14
+ `launch.browserExecutablePath` or `ABP_BROWSER_PATH`.
package/dist/index.cjs CHANGED
@@ -3416,7 +3416,10 @@ var BUILD_LIVE_REPLAY_PATH_SOURCE = String.raw`(target, policy) => {
3416
3416
  function createAbpDomActionBridge(context) {
3417
3417
  return {
3418
3418
  async buildReplayPath(locator) {
3419
- const { controller, document, backendNodeId } = await prepareLiveNodeContext(context, locator);
3419
+ const { controller, document, backendNodeId } = await prepareLiveNodeContext(
3420
+ context,
3421
+ locator
3422
+ );
3420
3423
  return withTemporaryExecutionResume(context, controller, async () => {
3421
3424
  const raw = await callNodeValueFunction(controller, document, locator, backendNodeId, {
3422
3425
  functionDeclaration: BUILD_LIVE_REPLAY_PATH_DECLARATION,