Skip to content

Commit

Permalink
update deBounceDOM timing in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-stanley committed Mar 7, 2024
1 parent 92b6b48 commit d2618fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/base/web/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,8 @@ export const isJSONEqual = (page: Page, obj1, obj2, workerInfo: TestInfo) =>
);

export const deBounceDOM = async (page) => {
const pollDelay = 500;
const stableDelay = 1000;
const pollDelay = 50;
const stableDelay = 350;
let markupPrevious = '';
const timerStart = new Date();
let isStable = false;
Expand Down

0 comments on commit d2618fe

Please sign in to comment.