-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong url in driver #22
Comments
Oh, I understand. It's a bad idea to share a single instance of WebDriver because parse happens parallel with new requests.
It's how I tried to use driver. It leads to a situation when response will be replaced with body from other url (which is in the driver at the moment) |
Hi @Tamplier, Thanks for opening this! Another problem from another issue is that since only one instance of webdriver is created, it can slow down the entire Scrapy request / response processing... I don't have any solution right now for theses problems, but I am currently working on another project who is at least solving the second one: https://github.com/clemfromspace/scrapy-puppeteer (Fully asynchronous webdriver using puppeteer instead of Selenium). |
I'm facing the same problem. Any updates? |
I am facing the same issue. I created an issue before I found this one, so I'm going to link it in order to focus the discussion about the topic: #111 |
Sometimes I receive different URL addresses in response and driver.
And more than that, driver url sometimes duplicates urls from other responces (at the same time response urls are unique).
The text was updated successfully, but these errors were encountered: