I'm trying to scrape little pieces of data from a webpage, but it is taking soo long to scrape... any reason why this is happening ? Initially, it stops scraping, then i had to set the default timeout to 0. This same code was working perfectly fine earlier..
Now it's taking forever to scrape the data i need code below
const puppeteer = require("puppeteer");
const express = require("express");
//const ejs = require("ejs");
const port = 5000;
const app = express();
app.set('view engine', 'ejs');
app.use(express.static(__dirname + '/public', {
     types: {
          'js': "text/javascript"
     }
}));
var usdBuy;
var usdSell;
var gbpBuy;
var gbpSell;
var eurBuy;
var eurSell;
app.get('/', function(req, res) {
     async function start() {
          const browser = await puppeteer.launch();
          const page = await browser.newPage();
          await page.setDefaultNavigationTimeout(0); 
          await page.goto("URL");
          const prices = await page.evaluate(() => {
               return Array.from(document.querySelectorAll(".overlay-text")).map(x => x.textContent)
          })
     
          usdBuy = prices[0]
          usdSell = prices[1]
     
          gbpBuy = prices[2]
          gbpSell = prices[3]
     
          eurBuy = prices[4]
          eurSell = prices[5]
     
          console.log(usdBuy);
          console.log(usdSell);
     
          console.log(gbpBuy);
          console.log(gbpSell);
     
          console.log(eurBuy);
          console.log(eurSell);
          await page.close();
          await browser.close();
     }    
     start();
     res.render("home", {
          usdBuy: usdBuy,
          usdSell: usdSell,
          gbpBuy: gbpBuy,
          gbpSell: gbpSell,
          eurBuy: eurBuy,
          eurSell: eurSell
     });
})
app.listen(process.env.PORT || port,  function () {
     console.log(`Listening on port ${port}`)
})
