Using Pytest with Playwright, I have below lines to ignore ssl certificate invalid error but its not working. Can someone please help resolve this issue?
with sync_playwright() as p:
browser = p.chromium.launch()
context = browser.new_context(ignore_https_errors=True)
page = context.new_page()
