Eugenio Lacuesta

Results 55 comments of Eugenio Lacuesta

AFAICT, this is expected. `"td::text"` does not exist if there is no text, that's why it's not included in the results and why `len(rows[2].css("td")) != len(rows[2].css("td::text"))`. Were you expecting some...

This is strange, I cannot reproduce either in my local Linux Mint environment: ``` $ scrapy version -v Scrapy : 2.5.0 lxml : 4.6.3.0 libxml2 : 2.9.10 cssselect : 1.1.0...

Update: the only feature currently missing is "Empty out FifoDiskQueue completely". Out of the initial 4 proposed features: 1. Get size of FifoDiskQueue 2. Empty out FifoDiskQueue completely 3. Peak...

I'm on @rafaelcapucho's team, we were able to find the cause of the issue in our case. We were not going back enough in the logs, but after doing so...

Sorry, I don't have those logs anymore. Was I posted was an anonymized version of an actual agent we have, basically to show that there was an exception somewhere down...

Hi, thanks for the interest in this project. Is this an issue of performance, memory usage, or both? Or something else? To be honest I didn't think this would be...

First of all, thanks for taking an interest in this project. Concurrency should be handled by the Scrapy Scheduler (which acts before the handler provided by this package), taking into...

I find this somewhat frustrating. I could not find any release notes for v16.7.0 talking about this deprecation, in fact there is no mention of "16.7.0" in https://github.com/twisted/twisted/blob/trunk/NEWS.rst and https://twistedmatrix.com/documents/current/api/twisted.web.client.HTTPClientFactory.html...

I think we have to explicitly mention `None` too, which is also a valid return value. (Based on [RFC 2119](https://www.rfc-editor.org/rfc/rfc2119), since we're using the word "must" in this phrase)

I suspect `project.middlewares.BrightDataProxyMiddleware` might be trying to set proxy configuration via `Request.meta["proxy"]`, which [isn't supported](https://github.com/scrapy-plugins/scrapy-playwright/issues/56#issuecomment-1033069738) (see also [Known issues](https://github.com/scrapy-plugins/scrapy-playwright/issues/56#issuecomment-1033069738)). It works well for me without specifying `DOWNLOADER_MIDDLEWARES`.