In node.js we have https://playwright.dev/docs/test-timeouts, but page does not exist for python, I can use the timeout parameter, but then I have to set it all over:
page.goto(url, timeout=60.0)
page.get_by_label(re.compile(r"(Language select|Språkvalg)")).click(timeout=60.0)
How can I set this globally, in pytest.ini or a pytest.fixture?