**There is a bug with codegen , generate code `browser.new_context` kwargs is ignore_httpserrors which should be ignore_http_serrors. code as follow:** ``` from playwright.sync_api import Playwright, sync_playwright, expect def run(playwright: Playwright) -> None: browser = playwright.chromium.launch(headless=False) context = browser.new_context(ignore_httpserrors=True) page.close() # --------------------- context.close() browser.close() with sync_playwright() as playwright: run(playwright) ```