You can use timeout: 0 to disable timeout errors if you’re loading a heavy page.
Use it in your page.goto like:
await page.goto('url'+tableCell04Val, {waitUntil: 'load', timeout: 0});
You can see the PR made to Pupeteer here which added the change, along with documentation and the unit tests that implement it.