該如何解決Pyppeteer的Target closed 錯誤問題
當在使用 Pyppeteer 控制 browser 去執行 page.click() 方法的時候,會遇見奇怪的錯誤 如下的錯誤訊息 Protocol error Target.activateTarget: Target closed.
將現有的 websockets 版本移除
pip uninstall websockets
在降低版本安裝回去,就能解決 target close 問題
pip install websockets==6.0
Leave a Comment