Debug and troubleshooting Crawlee
To illustrate the following syntax-error:
element = await context.page.query_selector('div[id="main"')
It should be with a closing bracket after "main":
element = await context.page.query_selector('div[id="main"]')
However, instead of failing, Crawlee will proceed and keep trying to query the page and it will not show any message on where it failed.
Is there any way to troubleshoot these kind of issues?
