本文主要是介绍TimeoutError: Navigation Timeout Exceeded: 30000ms exceeded,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
利用puppeeter 抓取融360
出现了一个错误 TimeoutError: Navigation Timeout Exceeded: 30000ms exceeded
加入 timeout: 0
在 page.goto 函数中
const response = await page.goto(url, { timeout: 0 //You can use timeout: 0 to disabled timeout errors if you're loading a heavy page. // Erro TimeoutError: Navigation Timeout Exceeded: 30000ms exceeded });
1 2 3 4 5 6 | const response = await page . goto ( url , { timeout : 0 / / You can use timeout : 0 to disabled timeout errors if you' re loading a heavy page . / / Erro TimeoutError : Navigation Timeout Exceeded : 30000ms exceeded } ) ; |
这篇关于TimeoutError: Navigation Timeout Exceeded: 30000ms exceeded的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!