在flask中调用pyppeteer需要添加的选项
2019-11-05 本文已影响0人
liuvz
You need to call launch with disabled signals handling,
browser = await launch(
handleSIGINT=False,
handleSIGTERM=False,
handleSIGHUP=False
)
不知道为什么, 反正能用了.......
You need to call launch with disabled signals handling,
browser = await launch(
handleSIGINT=False,
handleSIGTERM=False,
handleSIGHUP=False
)
不知道为什么, 反正能用了.......