Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
soundofspace committed Aug 30, 2023
1 parent 3b4aa36 commit 2da4b83
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions agent/main/lib/Interactor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ import { CanceledPromiseError } from '@ulixee/commons/interfaces/IPendingWaitEve
import Frame from './Frame';
import { JsPath } from './JsPath';
import MouseListener from './MouseListener';
import * as rectUtils from './oldrectUtils';
import * as newrectUtils from './rectUtils';
import * as rectUtils from './rectUtils';
import BrowserContext from './BrowserContext';
import {

Check failure on line 35 in agent/main/lib/Interactor.ts

View workflow job for this annotation

GitHub Actions / Test node-18, ubuntu-latest, latest

`@ulixee/unblocked-specification/agent/browser/IPosition` import should occur before import of `./Frame`
IPositionAbsolute,
Expand Down Expand Up @@ -98,8 +97,8 @@ export default class Interactor implements IInteractionsHelper {
public viewportSize: IViewportSize;

// Publish rect utils
public isPointWithinRect = newrectUtils.isPointWithinRect;
public createPointInRect = newrectUtils.createPointInRect;
public isPointWithinRect = rectUtils.isPointWithinRect;
public createPointInRect = rectUtils.createPointInRect;
public createScrollPointForRect = rectUtils.createScrollPointForRect;
public isRectanglePointInViewport = rectUtils.isRectanglePointInViewport;

Expand Down

0 comments on commit 2da4b83

Please sign in to comment.