update wait

This commit is contained in:
Admin 2025-11-17 14:59:31 +07:00
parent e5e74d7a96
commit 9518e81ce3
1 changed files with 6 additions and 0 deletions

View File

@ -450,6 +450,12 @@ export class GraysProductBid extends ProductBid {
if (bidedData && bidedData.Price >= this.max_price + this.plus_price) { if (bidedData && bidedData.Price >= this.max_price + this.plus_price) {
console.log(`[${this.id}] Bidded with ${bidedData.Price}`); console.log(`[${this.id}] Bidded with ${bidedData.Price}`);
// Reload page
await this.page_context.reload({
waitUntil: ["networkidle0", "domcontentloaded"],
});
return; return;
} }