Skip to content

Commit

Permalink
don't log in the timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
dphiffer committed Aug 16, 2023
1 parent adb6e39 commit f283d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pptr-utils/interaction-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const fillForms = async (page: Page, timeout = 30000) => {
const timeoutPromise = new Promise(resolve => {
setTimeout(() => {
isDone = true;
console.log('Timeout reached. Exiting fillForms().');
// console.log('Timeout reached. Exiting fillForms().');
resolve('Timeout');
}, timeout);
});
Expand Down

0 comments on commit f283d9b

Please sign in to comment.