diff --git a/auto-bid-tool/models/grays.com/grays-product-bid.js b/auto-bid-tool/models/grays.com/grays-product-bid.js index 59d3c52..124b69a 100644 --- a/auto-bid-tool/models/grays.com/grays-product-bid.js +++ b/auto-bid-tool/models/grays.com/grays-product-bid.js @@ -450,6 +450,12 @@ export class GraysProductBid extends ProductBid { if (bidedData && bidedData.Price >= this.max_price + this.plus_price) { console.log(`[${this.id}] Bidded with ${bidedData.Price}`); + + // Reload page + await this.page_context.reload({ + waitUntil: ["networkidle0", "domcontentloaded"], + }); + return; }