#1226·rod

修复: Page.cleanupStates() 没有删除每个会话的 CDP 状态,导致内存增长无限

作者: Vongo创建于 2026年2月23日更新于 2026年9月8日

func (p *Page) cleanupStates() { p.browser.RemoveState(p.TargetID) // Only removes the cached *Page entry for k, v := range p.browser.states { if k.stateKey == p.stateKey { p.browser.RemoveState(k.stateKey) // Delete all entries matching the closing page's SessionID } } }