Eugenio Lacuesta

Results 55 comments of Eugenio Lacuesta

Thank you for the research and for opening the upstream feature request, let's wait and see what they suggest.

I don't do private consultancy, no. I verified this specific case was no longer an issue after #144, which fixed the fact that some requests had their method incorrectly overridden...

9fe18b5e9363ed87afca04eb3dda8bf2679ef938

Passing `playwright_context="new"` for all requests will not make a new context for each request, it will only make all requests go trough a single context named "new". I'd recommend generating...

> If I have to close it manually, can you point me to the documentation about this? https://github.com/scrapy-plugins/scrapy-playwright#closing-a-context-during-a-crawl

I've decided to archive this for now. I want to avoid building a complex DSL for page methods, they are intended for simple actions. For more complex scenarios it's possible...

I've just tried this again and I still can't reproduce. With the code from [this comment](https://github.com/scrapy-plugins/scrapy-playwright/issues/97#issuecomment-1159737085) I get a a captcha with a message about suspicious traffic. If I remove...

To set cookies for a whole context at the Playwright level I'd say there are at least 3 ways: 1. requesting to receive the page object in a callback with...

Please provide a [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example).

Sorry, I cannot reproduce with scrapy-playwright 0.0.33 (3122f9cc8a32694fc2e7cbedc8511ca12e65d6a0). ```python import scrapy class AwesomeSpider(scrapy.Spider): name = "test_dl" custom_settings = { "TWISTED_REACTOR": "twisted.internet.asyncioreactor.AsyncioSelectorReactor", "DOWNLOAD_HANDLERS": { "https": "scrapy_playwright.handler.ScrapyPlaywrightDownloadHandler", }, # "PLAYWRIGHT_BROWSER_TYPE": "firefox", #...