This method clicks the element by performing the following steps:1. Wait for [actionability](https://playwright.dev/python/docs/actionability) checks on the element, unless `force` option is set.1. Scroll the element into view if needed.1. Use `page.mouse` to click in the center of the element, or the specified `position`.1. Wait for initiated navigations to either succeed or fail, unless `noWaitAfter` option is set.If the element is detached from the DOM at any moment during the action, this method throws.When all steps combined have not finished during the specified `timeout`, this method throws a `TimeoutError`.Passing zero timeout disables this.